查询SQLSERVER 被锁住的表,即造成锁表的进程ID:
select request_session_id spid,OBJECT_NAME(resource_associated_entity_id)tableName from sys.dm_tran_locks
where resource_type = 'OBJECT '
查询SQLSERVER 被锁住的表,即造成锁表的进程ID:
select request_session_id spid,OBJECT_NAME(resource_associated_entity_id)tableName from sys.dm_tran_locks
where resource_type = 'OBJECT '