查看死锁

查看:

--查询死锁
select    
    request_session_id spid,   
    OBJECT_NAME(resource_associated_entity_id) tableName    
from    
    sys.dm_tran_locks   
where    
    resource_type='OBJECT' 
原文地址:https://www.cnblogs.com/tiancaige/p/14462984.html