查看被锁表:
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)
本文提供了一种检查和解除SQL中锁定表的方法。通过查询系统表sys.dm_tran_locks,可以找到锁表的进程ID和被锁的表名。使用提供的SQL语句,可以轻松地找到并终止造成阻塞的进程。

2177

被折叠的 条评论
为什么被折叠?



