July 19, 2013 at 4:48 am
Hi,
How to find out the total number of all blocked sessions by using T-SQL Statement
July 19, 2013 at 5:00 am
select count(*) as blocked_actions
from master..sysprocesses
where blocked <> 0
July 19, 2013 at 5:06 am
Or to make use of the DMV's:
select count(*)
from sys.dm_exec_requests
where blocking_session_id <> 0
Viewing 3 posts - 1 through 2 (of 2 total)
You must be logged in to reply to this topic. Login to reply
This website stores cookies on your computer.
These cookies are used to improve your website experience and provide more personalized services to you, both on this website and through other media.
To find out more about the cookies we use, see our Privacy Policy