• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

sqlserver中查找长时间未提交事务

mysql 搞代码 4年前 (2022-01-09) 24次浏览 已收录 0个评论

欢迎进入Windows社区论坛,与300万技术人员互动交流 >>进入 因为也从sys.dm_tran_session_transactions的第一个查询中得知事务ID,所以可以使用sys.dm_tran_active_transactions来了解更多事务本身的内容 代码如下: select transaction_begin_time, case tra

欢迎进入Windows社区论坛,与300万技术人员互动交流 >>进入

  因为也从sys.dm_tran_session_transactions的第一个查询中得知事务ID,所以可以使用sys.dm_tran_active_transactions来了解更多事务本身的内容

  代码如下:

  select transaction_begin_time,

  case transaction_type

  when 1 then ‘Read/Write transaction’

  when 2 then ‘Read-Only transaction’

  when 3 then ‘System transaction’

  when 4 then ‘Distributed transaction’

  end tran_Type,

  case transaction_state

  when 0 then ‘not been comoletely initaialiaed yet’

  when 1 then ‘initaialiaed but ha notstarted’

  when 2 then ‘active’

  when 3 then ‘ended (read-only transaction)’

  when 4 then ‘commit initiated for distributed transaction’

  when 5 then ‘transaction prepared and waiting resolution’

  when 6 then ‘commited’

  when 7 then ‘being rolled back’

  when 0 then ‘been rolled back’

  end transaction_state

  from

  sys.dm_tran_active_transactions

  where transaction_ID=45

本文来源gaodai.ma#com搞##代!^码网(

5520

  代码如下:

  /*结果:

  transaction_begin_time tran_Type transaction_state

  2010-12-24 14:05:29.170 Read/Write transaction active

  */

  小结:这里演示了使用DMV 排除故障和调查长时间的活动事务的一般技巧。基本步骤如下:

  1、查询sys.dm_tran_session_transactions获取会话ID和事务ID之间的映射。

  2、查询sys.dm_exec_connections和sys.dm_exec_sql_text查找会话最新执行的命令(most_recent_sql_Handle列)

  3、最后,查询sys.dm_tran_active_transactions确定事务被打开了多少时间、事务的类型和事务的状态。

  使用这个技巧可以回到应用程序去查明调用的被抛弃的事务(打开但从未提交)以及那些运行时间太长或对于应用程序来说是不必要的不恰当事务。

[1] [2]


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:sqlserver中查找长时间未提交事务
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址