Script for rebuilding all table indexes
Here is the script which will rebuild all the indexes for all the tables in your database. USE DatabaseName --Enter the name of the database you want to reindex DECLARE @TableName varchar(255)...
View ArticleScript to find number of physical CPU installed on the server
SQL Script to check number of CPU installed on the server. Physical CPU (Core) = CPU Count / Hyper threaded Ratio SELECT cpu_count, hyperthread_ratio,...
View ArticleScript to check when was SQL Server restarted
There several ways you can check when was SQL server restarted last time. Below are some sql queries to quickly find out the server restart date time. You can run any one of below, all will give same...
View ArticleScript: Update statement with joins in sql server
Here is simple sql update script with inner join in the statement Update docs set FileName = 'abcd’, FileNo = b.FileNo + 1 from DocAttributes a inner join Docs b on a.DocID =...
View ArticleTips: Sample SQL Script demonstrating moving row from one database table to...
Many times such requirement comes wherein you need to copy data from one database to another database. Below is the sample sql script demonstrating the same. You can use a three part qualifier like...
View Article