SQL Server has encountered 1 occurrence(s) of I/O requests taking longer than 15 seconds to complete on file [D:\Data\af_shanghai_4.ndf] in database [af_shanghai] (7). The OS file handle is 0x00000960. The offset of the latest long I/O is: 0x000023101f0000
1、把偏移量0x000023101f0000转化为十进制为:150594322432
2、把该值除以8192即为page number: 150594322432/8192=18383096
3、通过page number求的table name
select object_name(object_id) as tblname,*
from sys.partitions sp with(nolock)
where sp.partition_id in (
select au.container_id from
sys.dm_os_buffer_descriptors obd with(nolock)
join sys.allocation_units au with(nolock)
on obd.allocation_unit_id=au.allocation_unit_id
where obd.page_id=18383096)![](http://i2.51cto.com/images/blog/201805/17/efc3a108cfca93c7ab3b493919d43ffe.png?x-oss-process=image/watermark,size_16,text_QDUxQ1RP5Y2a5a6i,color_FFFFFF,t_30,g_se,x_10,y_10,shadow_20,type_ZmFuZ3poZW5naGVpdGk=)
IO异常原因查找
转载文章标签 IO异常原因查找 文章分类 SQL Server 数据库
提问和评论都可以,用心的回复会被更多人看到
评论
发布评论
相关文章
-
U盘安装Tinycent 并启动时异常退出的原因
U盘安装Tinycent 并启动时异常退出的原因
硬盘分区 数据传输 解决方法 -
Java IO - 源码: InputStream
本文主要从JDK 11 源码角度分析InputStream。
Java IO/NIO/AIO