Wait statistics contains performance counters that report information about wait status. The  term "wait" means that a thread running on a processor cannot proceed because a resource it requires is unavailable. And, each performance counters are mapped to a wait types.

Checking this is a good way to identify  the issues and I would recommend to first look into wait stats when you have a problem. Below are the list of counters that Wait Statistics object contains:

Lock waits  - processes waiting on a lock. 

Log buffer waits  - processes waiting for log buffer to be available. 

Log write waits  - processes waiting for log buffer to be written. 

Memory grant queue waits  - processes waiting for memory grant to become available. 

Network IO waits  - relevant to wait on network I/O. 

Non-Page latch waits  - relevant to non-page latches. 

Page IO latch waits  - relevant to page I/O latches. 

Page latch waits  - relevant to page latches, not including I/O latches. 

Thread-safe memory objects waits  - processes waiting on thread-safe memory allocators. 

Transaction ownership waits  - relevant to processes synchronizing access to transaction. 

Wait for the worker  - relevant to processes waiting for worker to become available. 

Workspace synchronization waits  - relevant to processes synchronizing access to workspace. 

And, a comprehensive Wait Types and Latches Library that was documented by SQLskills team is a powerful method to get initial direction to the problem. Below are the most common:

> Do NOT change server wide MAXDOP to 1, this will disable parallelism.

> Are there non-zero ID thread showing CXPACKET waits?

> Correlated with PAGEIOLATCH - implies large scans. You may see ACCESS_METHOD_XX latch.

> You can ignore CXCONSUMER waits in 2016+ 

Possible root-cause:

Possible solution:


This indicates that the SPID is waiting for access to a thread-safe memory object. The serialization makes sure that while the users are allocating or freeing the memory from the memory object, any other SPIDs that are trying to perform the same task have to wait, and the CMEMTHREAD waittype is set when they are waiting. This waittype is most frequently noticed when ad hoc query plans are being quickly inserted into a procedure cache from many different connections to the instance of SQL Server.

Possible root-cause & solution:

> Explicitly parameterize queries so they can be reused.

> Using stored procedures where appropriate will help reduce pressure on the procedure cache.


These are all DBCC CHECKDB related latches.

Possible root-cause:


A thread is waiting for a lock that cannot be granted because another thread is holding an incompatible lock.

Possible root-cause & solution:


Encountered during access to File Group Control Block (FGCB) when adding, removing, shrinking or growing in the file group.

Possible root-cause & solution:


Occurs when a thread hits/exhausted the quantum limit (4ms duration) and voluntary yielded. This wait type is often mistaken for CPU pressure or Spinlock issues, however it could simply be constant CPU usage.

Possible root-cause:

Possible solution:


There's an excessive page splits occurring in indexes.

Exclusive Page Latch used to synchronize access to BUF structures and their associated database pages. Typically, buffer latching occurs during operations that require serialization on a buffer page, (during a page split or during the allocation of a new page, for example). These latches are not held for the duration of a transaction like locks.

Possible root-cause & solution:

Note: This can also happen to Tempdb system tables with large temp table creation/deletion rate.


This is used for disk-to-memory transfers.

Query workload with multiple concurrent threads to repeatedly create/drop small temp tables and/or work tables.

Possible root-cause & solution:

> less than equals (<=) 8 cores should be #files =#cores

> greater than (>) 8 cores, use 8 files, increase by chunks of 4

> Reference KB 2154845


This waittype indicates an SPID is waiting for a Shared Latch.Latches are used as short-term light-weight synchronization objects and are not held for the duration of a transaction like a lock would be. This type of latch is used to access non-buffer pages - they are not used to synchronize access to buffer pages (PAGELATCH_x is used for that).

Possible root-cause & solution:


This means the SQL Server is waiting for a client to acknowledge receipt of sent data.

Possible root-cause and solution:


The OLEDB (Object Linking and Embedding Database) mechanism are being used.

Possible root-cause:


Waiting for a transaction log block buffer to flush to disk.

Possible root-cause & solution:


This means, the thread is called out to Windows to write to a file.

Possible root-cause & solution:


This means, the thread usually called out to the OS. Thread is staying in SQL Server but does not want to give up CPU. Also, the thread status is RUNNING instead of SUSPENDED.

Possible root-cause & solution:


The thread calling windows to wait on state change of synchronization object.

It usually seen with ASYNC_NETWORK_IO wait.

Possible root-cause & solution: