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 2008 deadlock detection script


SQL Server Scripts by Burleson Consulting
 

*******************************************************
-- deadlock8.sql
*******************************************************
It is easy to understand whether or not there is a deadlock problem.
Depending on the SQL Server version, one of the two following queries can
be used to get a count of deadlocks, the first being for SQL Server 7,
and the other being for 2000 and higher:

select

***********************************************
-- deadlock8.sql
***********************************************
for 2000 and higher:

select
   cntr_value
from
   master.dbo.sysperfinfo
See code depot for full script
where
   object_name = 'SQLServer:Locks'
and
  counter_name = 'Number of Deadlocks/sec'
and
  instance_name = '_Total'




 

 

 

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