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 7 script for lock timeouts


SQL Server Scripts by Burleson Consulting
 


 
************************************************
-- lock_timeouts7.sql
************************************************
By default, all processes wait indefinitely for locks in SQL Server.
This behavior can be changed by using the SET LOCK_TIMEOUT command,
which limits the number of seconds that a process waits for a lock before
timing out. The question might be asked, “How one know if the timeout was
set too short?” The SQL Server keeps track of the number of lock timeouts
so it can quickly show if an invalid setting for timeouts has been received.
For SQL Server 7, this query can be used:



select
   sum(cntr_value)
from
   master.dbo.sysperfinfo
See code depot for full script
where
   counter_name = 'Lock Timeouts/sec'
and

   object_name = 'SQLServer:Locks'




 

 

 

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