|
Information About Resource Waits
If you need
information about resource waits, the following command runs on all versions of
SQL Server:
SELECT *FROM sys.dm_os_wait_stats
For example, if your top 2 values for
wait stats are IO wait stats, then there is an IO bottleneck. Run the query
below to know the top 5 wait stats on your server: SELECT TOP 5 *FROM sys.dm_os_wait_stats ORDER BY wait_time_ms DESC References.
|
.Send mail to
webmaster@sqlcoffee.com with
questions or comments about this web site.
|