[Bug] 解决 Sql Server 数据库死锁问题
SELECT request_session_id spid,
OBJECT_NAME(resource_associated_entity_id) tableName
FROM sys.dm_tran_locks
WHERE resource_type = 'OBJECT'
KILL spid
如:
kill 70
SELECT request_session_id spid,
OBJECT_NAME(resource_associated_entity_id) tableName
FROM sys.dm_tran_locks
WHERE resource_type = 'OBJECT'
KILL spid
如:
kill 70