Sql Server Deadlock Object IDs are too large

后端 未结 1 1800
醉话见心
醉话见心 2021-02-03 12:42

I am trying to trace a deadlock that is occurring in our SQL 2005 database (64-bit). We do not currently have snapshot isolation enabled.

I turned on tf-1204 and receiv

相关标签:
1条回答
  • 2021-02-03 12:45

    These IDs actually refer to hobts (Heap Or Binary Tree), found in sys.partitions. Try the following query inside database 10, and you will find which object and which index is affected.

    SELECT hobt_id, object_name(p.[object_id]), index_id 
    FROM sys.partitions p 
    WHERE hobt_id = 72057594060734464
    
    0 讨论(0)
提交回复
热议问题