15+ ping command examples in Linux [Cheat Sheet]
ping command is one of the most used commands in Linux. It is mostly used to check the connectivity between local and remote server. In most cases ICMP traffic is not impacted by firewall so this is very much reliable. …
25 ps command examples in Linux [Cheat Sheet]
25 ps command examples used in Linux to monitor the running processes. Complete cheat sheet of ps command with practical examples.
10+ lvcreate command examples in Linux [Cheat Sheet]
lvcreate command is used to create different types of Logical Volumes in Linux. You can create linear, striped, mirrored logicla volumes. You can also create snapshot volumes used for backup and restore purpose.
10+ lvchange command examples in Linux [Cheat Sheet]
lvchange command allows you to change attributes of a logical volume in the volume group. You can perform different operations such as activate/deactivate, change access permission and set/reset contiguous allocation …
lvremove command examples in Linux [Cheat Sheet]
lvremove command is used to remove a logical volume from a volume group in Linux
5+ lvscan command examples in Linux [Cheat Sheet]
lvscan command scans for all logical volumes in the Linux system and lists them. It displays the status, path, size, and allocation policy in one line per
Golang Testing Examples | How to test GO Code?
Step by Step instructions to understand golang testing and write unit tests in go code.
How to combine rows into one string in SQL
We have covered an overview of combine string rows, list out all three methods of combining rows into one string which are using COALESCE, USING XML PATH, and using string_AGG methods
Wordlist Generator using Crunch
Use crunch as wordlist generator or generating password strings for brute force attacks
How to install ARPACK in Linux?
Step by Step instructions to install ARPACK on RedHat, Arch and Debian based Linux distribution.
How to modify smbd process limit in Linux? [SOLVED]
We can use max smbd processes parameter in smb.conf to modify smbd process limit in Linux
Select duplicate records in SQL table [SOLVED]
In this article of select duplicate records in SQL, we have covered an overview of SQL duplicate records, steps to select duplicate records in SQL , why to
SQL INNER JOIN Explained with Simple Examples
The SQL INNER JOIN clause allows you to query data from multiple tables. It returns all rows from Table1, Table2, and Table 3 so on with exact matching rows from all tables.
SQL Date Functions Explained with Practical Examples
Different types of SQL Date Functions explained with examples. Some SQL Date Functions are similar in most database management systems. Few SQL Date Functions like CURDATE() and GETDATE() does the same functionality but …
SQL CREATE TABLE Statement with Practical Examples
Data stored in the database is logically stored in data tables, using SQL Create Table statement we can create data tables in the database management system
SQL GROUP BY Statement Explained with Practical Examples
The GROUP BY clause is part of SQL SELECT statement. Optionally it is used in conjunction with aggregate functions to produce resulting group of rows from the database. SQL GROUP BY clause is placed after the WHERE …
SQL LIKE | SQL NOT LIKE | SQL LIKE WILDCARD Examples
SQL like comparison operator is used to compare or to manipulate text with regular expression. There is a condition where we need to fetch records which do not match with pattern, in such situation we need to use SQL NOT …
SQL SUBSTRING Function Explained
SQL mainly provides three truncate functions which are working with string. SQL Substring Function, SQL Left Function, SQL Right Function
SQL Server COALESCE Function with Practical Examples
The SQL Server Coalesce() function is a basic SQL function which is used to evaluate the list of values and return the first occurrence of non-NULL value. The SQL Server Coalesce and IsNull functions both are used to …
SQL COUNT, AVG, SUM Functions | Aggregate Functions in SQL
SQL COUNT, AVERAGE and SUM are most commonly used aggregate functions of SQL.
SQL Union Operator Explained [Easy Examples]
SQL Union Operator or clause is a one of the SQL Set operators which is used to merge or combine two or more SQL Select Query results into single result set.
SQL Left Join Multiple Tables [Easy Examples]
Examples to use SQL LEFT JOIN Multiple tables. In SQL Left join, if a specific row is present in the left table but not in the right, the result will include this row but with a NULL value in each column from the right. …
SQL NOT NULL Constraint Explained [Easy Examples]
The SQL NOT NULL constraint on an attribute or column specifies that the NULL value is not allowed for that attribute, in other word, the constraint in SQL excludes the null value from the domain of that column values.
Concat SQL Function Explained [Practical Examples]
Concat SQL function is used to concatenate strings. difference between SQL concat and SQL concat_ws.
SQL WITH Clause Explained
The SQL WITH clause allows you to give the name to the output of referenced in subsequent queries, this process is interchangeably called as common table expression (CTE) or sub-query refactoring,
SQL DISTINCT Explained [Practical Examples]
SQL Distinct with SQL select statement, on one column and on multiple columns, difference between SQL Distinct and Group By clause and SQL Distinct with SQL Unique constrain and SQL distinct with Order By has explained …
SQL BETWEEN Explained with Practical Examples
SQL between syntax and examples. Using with update and delete statement. SQL NOT between examples and syntax, SQL Between Range with Numeric values
SQL Replace Function Explained
SQL REPLACE performs comparisons based on the collation of the input. To perform a comparison in a specified collation, you can use COLLATE to apply an explicit collation to the input
SQL RANK Function Explained
Practical examples of SQL RANK function with a single table, multiple tables, with partition argument and ORDER BY ASC and DESC, also mention an example of SQL RANK Function with Where a condition
SQL If Statement Tutorial [Practical Examples]
practical examples to use sql if statement explained. Use multiple if conditions, sql if else condition, sql nested if else condition with examples

