xmai

SQL死锁处理

2017-12-01 15:21  huoit  阅读(785)  评论(0编辑  收藏  举报

查询死锁

select    
    request_session_id spid,   
    OBJECT_NAME(resource_associated_entity_id) tableName    
from    
    sys.dm_tran_locks   
where    
    resource_type=\'OBJECT\' 

 

结束死锁进程

kill  121

创建死锁

BEGIN TRANSACTION--开始事务

update   job  set creator=\'00000\'  where id=\'001\'

WAITFOR DELAY \'02:00\'; 


select * from job where id=\'001\'

 

分类:

技术点:

相关文章:

  • 2021-12-10
  • 2021-08-26
  • 2021-09-27
  • 2021-07-27
  • 2022-01-23
  • 2021-12-25
  • 2022-12-23
猜你喜欢
  • 2021-12-10
  • 2021-12-10
  • 2021-11-15
  • 2021-07-10
  • 2022-12-23
  • 2021-12-10
相关资源
相似解决方案