SQL statement of the lock table process

SQL 2008, SQL2012 pro test is effective!

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

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=324624874&siteId=291194637