March 25, 2011 at 9:54 pm
Is there a way to find out how much time a Blocking has taken place...
March 26, 2011 at 9:36 am
When you run sp_who2, one column indicates the wait time.
Jim
Jim Murphy
http://www.sqlwatchmen.com
@SQLMurph
March 27, 2011 at 8:29 pm
I have been using sp_who2 for a long time Did not notice this option. Thanks for the Answer.
Sandeep.
March 28, 2011 at 1:51 am
You can get the informations about blocking time by using
sys.sysprocesses
e.g. select waittime from sys.sysprocesses
March 28, 2011 at 9:20 am
You can use DMV sys.dm_exec_requests, standard reports have a lot of useful info,
but I do not think sp_who2 can help you with blocking wait time
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply