• 周六. 10 月 5th, 2024

5G编程聚合网

5G时代下一个聚合的编程学习网

热门标签

sql 查询死锁

admin

11 月 28, 2021
 1 -- 查询死锁
 2 --第一种
 3 sp_lock 
 4 
 5 --第二种
 6 select object_name(resource_associated_entity_id) as tableName, request_session_id as pid,* from sys.dm_tran_locks
 7 where resource_type = 'OBJECT' ORDER BY pid
 8 
 9 --查询死锁相应的预计
10 DBCC INPUTBUFFER(spid) 
11 
12 --杀死死锁
13 kill spid

发表回复