Wednesday, 20 December 2017

Wait Stats MS SQL

Run the following query to see the PAGEIOLATCH wait stats for your database server

select *
from sys.dm_os_wait_stats 
where wait_type like 'PAGEIOLATCH%'
order by wait_type asc

No comments:

Post a Comment