gpt4 book ai didi

oracle - 从阻止 session 的 oracle 中查找查询

转载 作者:行者123 更新时间:2023-12-01 13:29:05 24 4
gpt4 key购买 nike

我想找出任何操作被阻止的查询。
从 DBA 那里,我收到了特定 session 被阻止的输入,但我无法在不知道是哪个查询导致问题的情况下进行进一步调查。
有没有办法找出导致问题的确切查询?

最佳答案

Oracle Blocking session很常见。请检查以下查询,它将帮助您获得详细信息。

select l1.inst_id,l1.sid, ' IS BLOCKING ', l2.sid,l1.type,l2.type,l1.lmode,l2.lmode,l2.inst_id
from gv$lock l1, gv$lock l2
where l1.block =1 and l2.request > 0and l1.id1=l2.id1
and l1.id2=l2.id2;

关于oracle - 从阻止 session 的 oracle 中查找查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46886403/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com