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

  

posted @ 2014-08-15 14:38  cclazy  阅读(285)  评论(0编辑  收藏  举报