SQL Script to find the databases size
Sometimes we need to find out the size of the database on a server. Below SQL Scripts can be used…
Sometimes we need to find out the size of the database on a server. Below SQL Scripts can be used…
Below query can be used to see the growth size of database files. DECLARE @filename NVARCHAR(1000); DECLARE @bc INT; DECLARE…
Sometimes we need to check which tables of our database is highly populated. Below is the T-SQL Script which we…
Sometimes we needs to find out the last executed commands on the database server. Below is the SQL script share…
Script to find the Fragmentation in Indexes In my previous articles, Fragmentation in SQL Server and Rebuild And Reorganization of…
Below is the query to find out all the Queries and their details like SSID etc. running on the SQL…
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.…
In SQL Server, database can be created by 2 ways:- Using Create Database command Using SQL Sever Management Studio (SSMS).…