http://xiangai.taobao.com
http://shop148612228.taobao.com

查看Sql Server被锁的表以及解锁

查看被锁表:

select spId
  from master..SysProcesses
 where db_Name(dbID) = '数据库名称'
   and spId <> @@SpId
   and dbID <> 0

解除锁:

exec ('Kill '+cast(@spid  as varchar))

 

 

下边的最灵了试试:

 

查看被锁表:

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


spid 锁表进程 
tableName 被锁表名

解锁:

复制代码
declare @spid  int 
Set @spid  = 57 --锁表进程
declare @sql varchar(1000)
set @sql='kill '+cast(@spid  as varchar)
exec(@sql)
 
复制代码

 

posted @ 2018-07-19 19:14  万事俱备就差个程序员  阅读(248)  评论(0编辑  收藏  举报

http://xiangai.taobao.com
http://shop148612228.taobao.com
如果您觉得对您有帮助.领个红包吧.谢谢.
支付宝红包
微信打赏 支付宝打赏