The SQL Server DMV sys.dm_os_wait_stats is a well established DMV , used heavily in troubleshooting performance problems in SQL Server. The DMV is an aggregated view on all the sql server wait types . When a thread is executed part of the runtime are waits. sys.dm_os_wait_stats presents the wait type aggregates. It is also possible to break down the waits at a query level. It’s useful to understand the meaning of the columns. According to the MSDN web site Wait_time_ms Total = wait time for this wait type in milliseconds. This time is inclusive of signal_wait_time_ms signal_wait_time_ms = Difference between... Read more →