MSSQL死锁进程查看及关闭
Posted itclw
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了MSSQL死锁进程查看及关闭相关的知识,希望对你有一定的参考价值。
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 = 87
--锁表进程
DECLARE @sql varchar(1000)
set @sql=‘kill ‘+cast(@spid as varchar) exec(@sql)
以上是关于MSSQL死锁进程查看及关闭的主要内容,如果未能解决你的问题,请参考以下文章