溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

數(shù)據(jù)庫中如何查看歷史會話等待事件對應(yīng)的session信息

發(fā)布時(shí)間:2021-11-09 10:24:01 來源:億速云 閱讀:344 作者:小新 欄目:關(guān)系型數(shù)據(jù)庫

小編給大家分享一下數(shù)據(jù)庫中如何查看歷史會話等待事件對應(yīng)的session信息,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

此處以enq: TX - row lock contention等待時(shí)間為例。


如果在此回話發(fā)生在awr快照信息默認(rèn)的保存天數(shù)以內(nèi)。
可以通過如下sql查詢到相關(guān)的session信息。
select * from DBA_HIST_ACTIVE_SESS_HISTORY where event like '%enq: TX - row lock contention%'

DBA_HIST_ACTIVE_SESS_HISTORY 中的blocking_session字段關(guān)聯(lián)DBA_HIST_ACTIVE_SESS_HISTORY中的session_id找到對應(yīng)的sql_id從而得到回話信息。

可以通過如下查詢直接獲取信息:
select t.instance_number,
       t.sample_time,
       lpad('-', 2 * (level - 1), '-') || t.client_id,
       t.session_id,
       t.blocking_session,
       t.session_serial#,
       t.sql_id,
       t.event,
       t.session_state,
       level,
       connect_by_isleaf,
       connect_by_iscycle
  from dba_hist_active_sess_history  t
 where snap_id between 36878 and 36879
 start with blocking_session is not null
        and event like 'enq: TX - row lock contention%'
connect by nocycle sample_time = prior sample_time
       and session_id = prior blocking_session
       and session_serial# = prior blocking_session_serial#


其中blocking session為正在阻塞該回話的session


實(shí)戰(zhàn)案例:
查看等待事件為行鎖的session
select a.snap_id,
       a.sql_id,
       a.session_id,
       a.session_serial#,
       a.blocking_session,
       a.blocking_session_serial#,
       a.blocking_session_status
  from DBA_HIST_ACTIVE_SESS_HISTORY a
 where event like '%enq: TX - row lock contention%'
   and snap_id between 20399 and 20400


編寫子查詢,查看阻塞回話,并統(tǒng)計(jì)阻塞次數(shù)
select a.blocking_session,
       a.blocking_session_serial#,
       count(a.blocking_session)
  from DBA_HIST_ACTIVE_SESS_HISTORY a
 where event like '%enq: TX - row lock contention%'
   and snap_id between 20399 and 20400
 group by a.blocking_session, a.blocking_session_serial#
 order by 3 desc
 
查看阻塞回話的sql_id和被阻塞的sql_id,條件為阻塞大于19次的
select distinct b.sql_id,c.blocked_sql_id
  from DBA_HIST_ACTIVE_SESS_HISTORY b,
       (select a.sql_id as blocked_sql_id,
       a.blocking_session,
               a.blocking_session_serial#,
               count(a.blocking_session)
          from DBA_HIST_ACTIVE_SESS_HISTORY a
         where event like '%enq: TX - row lock contention%'
           and snap_id between 20399 and 20400
         group by a.blocking_session, a.blocking_session_serial#,a.sql_id
        having count(a.blocking_session) > 19
         order by 3 desc) c
 where b.session_id = c.blocking_session
   and b.session_serial# = c.blocking_session_serial#
   and b.snap_id between 20399 and 20400

動態(tài)性能視圖注釋:

V$ACTIVE_SESSION_HISTORY displays sampled session activity in the database. It contains snapshots of active database sessions taken once a second. A database session is considered active if it was on the CPU or was waiting for an event that didn't belong to the Idle wait class. Refer to the V$EVENT_NAME view for more information on wait classes.

看完了這篇文章,相信你對“數(shù)據(jù)庫中如何查看歷史會話等待事件對應(yīng)的session信息”有了一定的了解,如果想了解更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI