Call now: (800) 766-1884  


 Home


SQL Server Tips
SQL Server Training

SQL Server Consulting
SQL Server Support

Articles
Services
SQL Server Scripts
Scripts Menu



 

 

 

 
 

SQL Server script for block count


SQL Server Tips by Burleson Consulting
 

************************************************
-- blockcount.sql
************************************************
In this case, it is critical that the high performance SQL Server DBA be able to quickly understand the locking situation on the database servers and be able to resolve any lock-induced bottlenecks.
 
If a user calls and complains that their databases are hung with no activity
taking place, the first thing the DBA should do is see if any blocking locks
currently exist on the server. This can easily be accomplished with the
blockcount.sql query:


select
count(*)
from
master.dbo.sysprocesses
See code depot for full script

where
blocked <> 0

 

 

 

image


 

 


 

 

 

 

Note: The pages on this site were created as a support and training reference for use by our staff of DBA consultants.  If you find it confusing, please exit this page.

Errata?  SQL Server technology is changing and we strive to update our SQL Server support information.  If you find an error or have a suggestion for improving our content, we would appreciate your feedback.  Just  e-mail:and include the URL for the page.
 


Burleson Consulting
SQL Server database support

 

Copyright © 1996 -  2006 by Burleson Enterprises, Inc. All rights reserved.

Hit Counter