|
SQL> insert into dept values(60,'aaa','bbb');
1 row created.
SQL> select dbms_transaction.local_transaction_id x from dual;
X
----------------------------------------------------------------------------------------------------------------------
7.7.5752
SQL> select addr, xid, xidusn, xidslot, xidsqn from v$transaction;
ADDR XID XIDUSN XIDSLOT XIDSQN
---------------- ---------------- ---------- ---------- ----------
00000000DB0CD228 0700070078160000 7 7 5752
SQL> select UNDO_SQL from FLASHBACK_TRANSACTION_QUERY where xid=hextoraw('0700070078160000') and undo_sql is not null;
UNDO_SQL
----------------------------------------------------------------------------------------------------------------------
delete from "SCOTT"."DEPT" where ROWID = 'AAAR3vAAEAAAACHAAF';
|
|