sql server 获取被锁的对象

获取被锁的对象

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

解锁

KILL SPID

  

原文地址:https://www.cnblogs.com/yuanhang/p/3914842.html