SQL Script to find the tables created from a given date
Below is the SQL query which can be used to find out the tables which are created or modified on…
Category containing DBA Scripts
Below is the SQL query which can be used to find out the tables which are created or modified on…
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…