查看sqlserver被锁的表:

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 = 66 --锁表进程
declare @sql varchar(1000)
set @sql='kill '+cast(@spid as varchar)
exec(@sql)

相关文章:

  • 2022-12-23
  • 2021-06-08
  • 2022-12-23
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
  • 2022-01-03
  • 2021-05-18
猜你喜欢
  • 2021-07-30
  • 2021-11-16
  • 2021-11-29
相关资源
相似解决方案