Advertisement
Guest User

Untitled

a guest
Jun 26th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. select session_id,
  2. wait_duration_ms / 1000. / 60. as wait_duration_min,
  3. wait_type,
  4. blocking_session_id
  5. from sys.dm_os_waiting_tasks
  6. where blocking_session_id is not null;
  7. GO
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement