2005191600@SQL死锁检测
1234567891011121314
--查询死锁select request_session_id spid, OBJECT_NAME(resource_associated_entity_id) tableName from sys.dm_tran_locks where resource_type='OBJECT' --杀死死锁进程kill 354 --显示死锁相关信息exec sp_who2 354