January 31, 2012 at 8:48 pm
what is the best way to detect long running blocking transactions.
January 31, 2012 at 8:52 pm
You can use below query to find out the current blocking transactions.
Select * from sys.sysprocesses where blocked<>0
If you are using Sql server 2005 or higher version then you can use standard reports for All blocking transactions.
January 31, 2012 at 9:05 pm
Thanks, but I am looking for an automated alert which will send the mail with blocking details.
January 31, 2012 at 9:09 pm
Here is good article on this.
http://www.sqlservercentral.com/scripts/Lock+and+Connection+Management/30059/
January 31, 2012 at 11:42 pm
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply