找出死锁的原因

时间:2012-09-27 10:43:55

标签: sql sql-server profiling deadlock

我有2个以上的并发进程。在它们内部有一个迭代,执行重复验证(选择)+保存(插入)操作。这是关于死锁的sql-server-profiler信息:

<deadlock-list>
     <deadlock victim="process8e09048">
      <process-list>
       <process id="process8e09048" taskpriority="0" logused="1088" waitresource="PAGE: 29:1:376823" waittime="920" ownerId="1276429306" transactionname="user_transaction" lasttranstarted="2012-09-26T20:59:44.367" XDES="0x3077833c0" lockMode="S" schedulerid="1" kpid="4872" status="suspended" spid="79" sbid="0" ecid="0" priority="0" trancount="1" lastbatchstarted="2012-09-26T20:59:44.427" lastbatchcompleted="2012-09-26T20:59:44.427" clientapp=".Net SqlClient Data Provider" hostname="PORTAL" hostpid="5348" loginname="IIS APPPOOL\ASP.NET v4.0 Classic" isolationlevel="read committed (2)" xactid="1276429306" currentdb="29" lockTimeout="4294967295" clientoption1="671088672" clientoption2="128056">
        <executionStack>
         <frame procname="adhoc" line="1" stmtstart="282" sqlhandle="0x02000000b79df8046665e3984d6dc129fec20a3029fce9bc">
    SELECT id FROM [WP_CashCenter_StockTransactionLine] WHERE StockTransaction_id=@StockTransaction_id and Direction=@Direction and IsVerified=@IsVerified and QualificationType=@QualificationType and id &lt;&gt; @id and Product_id is null and Material_id=@Material_id and StockContainer_id is null and StockLocation_id=@StockLocation_id     </frame>
         <frame procname="unknown" line="1" sqlhandle="0x000000000000000000000000000000000000000000000000">
    unknown     </frame>
        </executionStack>
        <inputbuf>
    (@id bigint,@StockTransaction_id bigint,@Direction int,@IsVerified bit,@QualificationType int,@Material_id nvarchar(3),@StockLocation_id int)SELECT id FROM [WP_CashCenter_StockTransactionLine] WHERE StockTransaction_id=@StockTransaction_id and Direction=@Direction and IsVerified=@IsVerified and QualificationType=@QualificationType and id &lt;&gt; @id and Product_id is null and Material_id=@Material_id and StockContainer_id is null and StockLocation_id=@StockLocation_id    </inputbuf>
       </process>
       <process id="process5c13948" taskpriority="0" logused="2636" waitresource="PAGE: 29:1:376823" waittime="920" ownerId="1276429252" transactionname="user_transaction" lasttranstarted="2012-09-26T20:59:44.337" XDES="0x222e64e80" lockMode="S" schedulerid="6" kpid="2956" status="suspended" spid="70" sbid="0" ecid="0" priority="0" trancount="1" lastbatchstarted="2012-09-26T20:59:44.427" lastbatchcompleted="2012-09-26T20:59:44.427" clientapp=".Net SqlClient Data Provider" hostname="PORTAL" hostpid="5348" loginname="IIS APPPOOL\ASP.NET v4.0 Classic" isolationlevel="read committed (2)" xactid="1276429252" currentdb="29" lockTimeout="4294967295" clientoption1="671088672" clientoption2="128056">
        <executionStack>
         <frame procname="adhoc" line="1" stmtstart="238" sqlhandle="0x02000000d77dd1038a9b7f6d7158436117c042e42767242d">
    SELECT id FROM [WP_CashCenter_StockTransactionLine] WHERE StockTransaction_id=@StockTransaction_id and Direction=@Direction and IsVerified=@IsVerified and QualificationType=@QualificationType and id &lt;&gt; @id and Product_id is null and Material_id=@Material_id and StockContainer_id is null and StockLocation_id is null     </frame>
         <frame procname="unknown" line="1" sqlhandle="0x000000000000000000000000000000000000000000000000">
    unknown     </frame>
        </executionStack>
        <inputbuf>
    (@id bigint,@StockTransaction_id bigint,@Direction int,@IsVerified bit,@QualificationType int,@Material_id nvarchar(3))SELECT id FROM [WP_CashCenter_StockTransactionLine] WHERE StockTransaction_id=@StockTransaction_id and Direction=@Direction and IsVerified=@IsVerified and QualificationType=@QualificationType and id &lt;&gt; @id and Product_id is null and Material_id=@Material_id and StockContainer_id is null and StockLocation_id is null    </inputbuf>
       </process>
      </process-list>
      <resource-list>
       <pagelock fileid="1" pageid="376823" dbid="29" objectname="Edsson_WebPortal_v5.01.dbo.WP_CashCenter_StockTransactionLine" id="lock9302c80" mode="IX" associatedObjectId="72057594148028416">
        <owner-list>
         <owner id="process5c13948" mode="IX"/>
        </owner-list>
        <waiter-list>
         <waiter id="process8e09048" mode="S" requestType="convert"/>
        </waiter-list>
       </pagelock>
       <pagelock fileid="1" pageid="376823" dbid="29" objectname="Edsson_WebPortal_v5.01.dbo.WP_CashCenter_StockTransactionLine" id="lock9302c80" mode="IX" associatedObjectId="72057594148028416">
        <owner-list>
         <owner id="process8e09048" mode="IX"/>
        </owner-list>
        <waiter-list>
         <waiter id="process5c13948" mode="S" requestType="convert"/>
        </waiter-list>
       </pagelock>
      </resource-list>
     </deadlock>
    </deadlock-list>

enter image description here

语句是根据条件选择的。这些选择的where子句仅使用包含在非聚集索引中的列。执行计划: enter image description here

1 个答案:

答案 0 :(得分:1)

在此死锁图中,两个进程都成功执行INSERT并在同一页面上保持IX锁定。他们必须在同一页面中的两个单独的行上持有X锁。

由于NC索引涵盖了SELECT,因此死锁中涉及的页面必须属于NC索引。

您的SELECT语句正在尝试获取已通过INSERT语句进行IX锁定的页级锁定。

因此,如果您的INSERT不属于同一个StockTransaction_id,只需将ROWLOCK提示添加到SELECT即可解决死锁情况。

RCSI保证读者不会被作者阻止,反之亦然。但是,如果您的应用程序设计依赖于任何阻止行为,这可能是一个问题。

由于锁粒度不同here

,您可以阅读有关死锁的更多信息
相关问题