LCK_M_X

HIGH Blocking
#lock#exclusive#write-write
Related diagnostic scripts:

Overview

Occurs when a task waits to acquire an exclusive (X) lock. High durations indicate write-write contention, often from long-running DDL or DML in serializable isolation level.

Key Metrics

MetricDescription
Wait TypeLCK_M_X
CategoryBlocking
SeverityHIGH

Troubleshooting

1. Identify the source

Use the following query to identify the top queries contributing to LCK_M_X waits:

SELECT TOP 10
 [Wait Type] = wait_type,
 [Wait Seconds] = wait_time_ms / 1000,
 [Wait Count] = waiting_tasks_count,
 [Avg Wait Ms] = wait_time_ms / NULLIF(waiting_tasks_count, 0)
FROM sys.dm_os_wait_stats
WHERE wait_type = 'LCK_M_X'
ORDER BY wait_time_ms DESC;

See Also