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 lock wait time counts


SQL Server Scripts by Burleson Consulting
 

***************************************************
-- lock_analysis7.sql
***************************************************
SQL Server offers a number of other lock counters via the master.dbo.sysperfinfo
table that can be used to check lock activity. The following queries for SQL Server 7
and for SQL Server 2000 and above can get this information in short order:

select
   counter_name,
   sum(cntr_value)
from
   master.dbo.sysperfinfo
See code depot for full script
where
   counter_name in ('Lock Wait Time (ms)',
   'Average Wait Time (ms)',
   'Lock Waits/sec')
and

   object_name = 'SQLServer:Locks'
group by
   counter_name




 

 

 

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