Oracle 通過undo塊檢視事務資訊

kisslfcr發表於2017-10-31
資料庫版本:
Oracle 11.2.0.3 RAC


實驗目的:
通過undo塊檢視Oracle事務資訊


實驗細節:
1 開始一個事務
SQL> select * from t1;


        ID NAME
---------- ------------------------------
         1 ycr
         2 zhy
         3 wya
         5 lj
         4 zhb
         2 mk
         2 cc




SQL> update t1 set id=6 where name='cc';


1 row updated.
此事務不要commit或者rollback。


2 檢視事務資訊
a)檢視session號:
SQL> select sid from v$mystat where rownum=1;


       SID
----------
        27


b)獲取undo槽位等資訊:
SQL> select xidusn,xidslot,xidsqn from V$TRANSACTION t,v$session s where s.sid=27 and s.taddr=t.addr;


    XIDUSN    XIDSLOT     XIDSQN
---------- ---------- ----------
        10         26       1741




SQL> select sid,trunc(id1/65536) usn,mod(id1,65536) slot,id2 wrap,lmode from v$lock where type='TX' and sid='27';


       SID        USN       SLOT       WRAP      LMODE
---------- ---------- ---------- ---------- ----------
        27         10         26       1741          6


其中
Column Description
XIDUSN Undo segment number
XIDSLOT Slot number
XIDSQN Sequence number


3 根據查詢到的資訊找到undo塊:
a)檢視undo塊頭位置
SQL> clear columns
columns cleared
SQL> col name for a40
SQL> select * from v$rollname where usn=10;  


       USN NAME
---------- ----------------------------------------
        10 _SYSSMU10_3271578125$


b)dump undo塊
alter system dump undo header"_SYSSMU10_3271578125$";
select * from v$diag_info where name='Default Trace File';
/u01/app/oracle/diag/rdbms/irac/IRAC1/trace/IRAC1_ora_4444.trc


c)檢視undo塊頭資訊:
 index  state cflags  wrap#    uel         scn            dba            parent-xid    nub     stmt_num    cmt
  ------------------------------------------------------------------------------------------------
     0x19    9    0x00  0x06d0  0x0012  0x0000.00b6ed00  0x00c00382  0x0000.000.00000000  0x00000001   0x00000000  1509426012
   0x1a   10    0x80  0x06cd  0x0004  0x0000.00b6f712  0x00c00397  0x0000.000.00000000  0x00000001   0x00000000  0
   0x1b    9    0x00  0x06ce  0x0002  0x0000.00b6ed4f  0x00c00397  0x0000.000.00000000  0x00000003   0x00000000  1509426012
可以看到找到了對應的事務
state為10說明為活動事務,warp#為0x06cd同v$lock查到的資訊相同,換算成10進製為1741。

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29135257/viewspace-2146639/,如需轉載,請註明出處,否則將追究法律責任。

相關文章