↧
Answer by sp_lock
Firstly, What is the specification of the server/disk setup do you have? Also has any thing changed (increased volume, server h/w etc). Is the SQL server sharing resources? To start with I would check...
View ArticleAnswer by ramesh 1
run this code, it is allways advised to run update table stats once indexes are rebuild use dbname go sp_updatestats
View ArticleAnswer by Grant Fritchey
When you say hanging, I would assume a blocked process. Run a query against sys.dm_exec_requests and look at the column blocking_session_id. This will tell you if one or more of your processes is...
View Article