閃回技術一:閃回查詢

sky850623發表於2014-07-05
1.建立一表並插入資料
SQL> create table t (x int,name varchar2(10));
表已建立。
SQL> insert into t values(1,'a');
已建立 1 行。
SQL> insert into t values(2,'b');
已建立 1 行。
SQL> insert into t values(3,'b');
已建立 1 行。
SQL> insert into t values(4,'d');
已建立 1 行。
SQL> commit;
提交完成。
SQL> select * from t;
         X NAME
---------- ----------
         1 a
         2 b
         3 b
         4 d
2.查詢當前SCN
SQL> select current_scn from v$database;
CURRENT_SCN
-----------
     967014
3.刪除一行
SQL> delete from t where x=4;
已刪除 1 行。
SQL> commit;
提交完成。
SQL> select * from t;
         X NAME
---------- ----------
         1 a
         2 b
         3 b
4.閃回查詢
SQL> select * from t as of scn 967014;
         X NAME
---------- ----------
         1 a
         2 b
         3 b
         4 d
把scn轉成時間
SQL> select scn_to_timestamp(967014) from dual;
SCN_TO_TIMESTAMP(967014)
--------------------------------------------------
05-7月 -14 07.41.13.000000000 下午
按時間閃回查詢
SQL> select * from t as of timestamp to_date('2014-7-5 19:41:00','yyyy-mm-dd hh24:mi:ss');
         X NAME
---------- ----------
         1 a
         2 b
         3 b
         4 d
5.恢復資料
SQL> insert into t select * from t as of timestamp to_date('2014-7-5 19:41:00','yyyy-mm-dd hh24:mi:ss') where x=4;
已建立 1 行。
SQL> commit;
提交完成。
SQL> select * from t;
         X NAME
---------- ----------
         1 a
         2 b
         3 b
         4 d



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

相關文章