Guest User

Untitled

a guest
Jul 19th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. SELECT
  2. [owt].[wait_type], count(*) as waitcount
  3. FROM sys.dm_os_waiting_tasks [owt]
  4. WHERE [owt].[wait_type] LIKE 'PAGE%'
  5. group by [owt].[wait_type]
  6. order by 1
  7. GO 100
Add Comment
Please, Sign In to add comment