服务器之家:专注于服务器技术及软件下载分享
分类导航

Mysql|Sql Server|Oracle|Redis|MongoDB|PostgreSQL|Sqlite|DB2|mariadb|Access|数据库技术|

服务器之家 - 数据库 - Sql Server - SQL语句实现查询当前数据库IO等待状况

SQL语句实现查询当前数据库IO等待状况

2020-04-14 15:28junjie Sql Server

这篇文章主要介绍了SQL语句实现查询当前数据库IO等待状况,本文直接给出查询实现脚本,需要的朋友可以参考下

sys.dm_io_pending_io_requests可以返回当前IO Pending的状态,对于SQL Server 中每个挂起的I/O 请求,返回与其对应的一行,跟sys.dm_io_virtual_file_stats配合可以看到具体是哪个数据库IO出现问题。

?
1
2
3
4
5
6
7
8
9
select DB_NAME(database_id) as DBNAME,
    database_id,
    file_id,
    io_stall,
    io_pending_ms_ticks,
    scheduler_address
from sys.dm_io_virtual_file_stats(null,null)i ,
sys.dm_io_pending_io_requests s
where s.io_handle = i.file_handle

延伸 · 阅读

精彩推荐