Script to find the Fragmentation of indexes
Script to find the Fragmentation in Indexes In my previous articles, Fragmentation in SQL Server and Rebuild And Reorganization of Indexes , […]
This category contains all SQL related articles
Script to find the Fragmentation in Indexes In my previous articles, Fragmentation in SQL Server and Rebuild And Reorganization of Indexes , […]
Below is the query to find out all the Queries and their details like SSID etc. running on the SQL
Script to find all the running queries/jobs on the Database Server Read Post »
Many times I was asked how to pass Microsoft certifications and how difficult it is. In my point of view,
Many times my friends ask me which technical sites they should refers for finding the solutions, so below is the
In this article, I am going to explain the process of Database restoration using the SQL Server Management Studio. In
Introduction This article explain the simple way to take the database backup in SQL SERVER which can be easily understandable
In the previous article (Database Creation using Create Database command), I explained the database creation using the Create database command.
Database Creation using SQL Sever Management Studio (SSMS) Read Post »
In SQL Server, database can be created by 2 ways:- Using Create Database command Using SQL Sever Management Studio (SSMS).
With IN clause, we can specify multiple values in a WHERE clause. For example, in case of “IN”, one can
UPPER():- This function is used to convert the value of a column to upper case. Syntax: SELECT UPPER(string) OR
Avg():- This function is used to get the average value of a numeric column Syntax:- SELECT AVG(column_name) FROM table_name
LOWER():- This function is used to convert the value of a column to lower case Syntax:- Select LOWER (string)
LEN():- This function is used to get the length of the given string value. Syntax:- Select len (stringvalue)
Substring():- This function is used to return the specified number (third argument “len”) of characters from a given string(first argument)
LTRIM ():- This function is used to get the string after the removal of leading blank spaces. Syntax:- LTRIM (