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\'

 

分类:

技术点:

相关文章:

  • 2018-08-21
  • 2021-10-09
  • 2021-09-28
  • 2021-08-19
  • 2021-09-28
  • 2020-06-02
  • 2021-10-19
  • 2021-09-28
猜你喜欢
  • 2021-08-07
  • 2020-03-18
  • 2021-01-26
  • 2021-08-14
  • 2021-12-16
  • 2021-09-08
  • 2021-09-28
  • 2021-10-09
相关资源
相似解决方案