Sqlserver查询被锁的表及Kill锁住的表
作者:佚名 发表时间:2015-07-20 11:20:55

查看锁住的表:

select   request_session_id   spid,OBJECT_NAME(resource_associated_entity_id) tableName   
from   sys.dm_tran_locks where resource_type='OBJECT'
解除表锁

declare @spid  int 
Set @spid  = 54 --锁表进程
declare @sql varchar(1000)
set @sql='kill '+cast(@spid  as varchar)
exec(@sql)