T-SQL script to find the growth size of database files
Below query can be used to see the growth size of database files. DECLARE @filename NVARCHAR(1000); DECLARE @bc INT; DECLARE…
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…
Many times I was asked how to pass Microsoft certifications and how difficult it is. In my point of view,…
In this article, I am going to explain the process of Database restoration using the SQL Server Management Studio. In…
Deleting Duplicate rows using CTE Many times we caught in a situation where we have a table where there is…