SQL Server等待事件—PAGEIOLATCH_EX
什么是 PAGEIOLATCH_EX 等待事件? 下面我们将对 PAGEIOLATCH_EX 等待事件的相关资料做一个简单的归纳、整理。关于 PAGEIOLATCH_EX ,官方文档的简单介绍如下: PAGEIOLATCH_EX : Occurs when a task is waiting on a latch for a buffer that is in an I/O request. The latch request is in Exclusive mode. Long waits may indicate problems with the disk subsystem. 在任务等待 I/O 请求中缓冲区的闩锁时发生。 闩锁请求处于 “ 独占 ” 模式。 长时间的等待可能指示磁盘子系统出现问题。 In SQL Server, a latch is a short-term lightweight synchronization object. Buffer latches including the PAGEIOLATCH_EX wait type are used to synchronize access to BUF structures and associated pages in the SQL Server database. The most