--查看锁定的 表
select request_session_id spid,OBJECT_NAME(resource_associated_entity_id) tableName
from sys.dm_tran_locks where resource_type='OBJECT'

--查看数据库ID
select DB_ID()
--查看 未提交的事务
select * from sys.dm_tran_locks where resource_type = 'OBJECT' and resource_database_id = 6

相关文章:

  • 2021-07-29
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-05
  • 2022-01-03
猜你喜欢
  • 2022-12-23
  • 2021-08-27
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
  • 2021-10-21
相关资源
相似解决方案