標籤:style color 使用 io strong 資料 ar 問題
Flashback query(閃回查詢)原理
Oracle根據undo資訊,利用undo資料,類似一致性讀取方法,可以把表置於一個刪除前的時間點(或SCN),從而將資料找回。
Flashback query(閃回查詢)前提:
SQL> show parameter undo;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
undo_management string AUTO
undo_retention integer 900
undo_tablespace string UNDOTBS1
其中undo_management = auto,設定自動undo管理(AUM),該參數預設設定為:auto;
Undo_retention = n(秒),設定決定undo最多的儲存時間,其值越大,就需要越多的undo資料表空間的支援。修改undo_retention的命令如下:
SQL> alter system set undo_retention = 3600;
System altered
閃回實現方式
1. 擷取資料刪除前的一個時間點或scn,如下:
SQL>select to_char(sysdate, ‘yyyy-mm-dd hh24:mi:ss‘) time, to_char(dbms_flashback.get_system_change_number) scn from dual;
TIME SCN
------------------- ----------------------------------------
2010-06-29 23:03:14 1060499
2. 查詢該時間點(或scn)的資料,如下:
SQL> select * from t as of timestamp to_timestamp(‘2010-06-29 22:57:47‘, ‘yyyy-mm-dd hh24:mi:ss‘);
SQL> select * from t as of scn 1060174;
3. 將查詢到的資料,新增到表中。也可用更直接的方法,如:
SQL>create table tab_test as select * from t of timestamp to_timestamp(‘2010-06-29 22:57:47‘, ‘yyyy-mm-dd hh24:mi:ss‘);
SQL>insert into tab_test select * from1060174;
樣本:
Create table t(id number);
insertinto t values(1);
insert into t values(2);
insert into t values(3);
insert into t values(4);
insert into t values(5);
1.查看t表中的未經處理資料
SQL> select * from t;
ID
---------
1
2
3
4
5
2.擷取資料刪除前的一個時間點或scn
SQL> select to_char(sysdate, ‘yyyy-mm-dd hh24:mi:ss‘) time, to_char(dbms_flashback.get_system_change_number) scn from dual;
TIME SCN
------------------- ----------------------------------------
2010-06-29 23:23:33 1061279
3.刪除t表中的資料,並提交事物
SQL> delete from t;
5 rows deleted
SQL> commit;
Commit complete
4.在查看t表,此時t表中資料以刪除
SQL> select * from t;
ID
----------
5.查看t表中scn為1061279(或時間點為2010-06-29 23:23:33)時的資料
SQL> select * from t as of scn 1061279;
ID
----------
1
2
3
4
5
6.確認要恢複後,將t表中的資料還原到scn為1061279(或時間點為2010-06-29 23:23:33)時的資料,並提交事物
SQL> insert into t select * from t as of scn 1061279;
5 rows inserted
SQL> commit;
Commit complete
7.確認t表資料的還原情況
SQL> select * from t;
ID
----------
1
2
3
4
5
註:推薦使用scn,由於oracle9i中,因為scn與時間點的同步需要5分鐘,如果最近5分鐘之內的資料需要Falshback query查詢,可能會查詢丟失,而scn則不存在這個問題。Oracle10g中這個問題已修正(scn與時間點的大致關係,可以通過logmnr分析歸檔日誌獲得)。
Falshback query查詢的局限:
1. 不能Falshback到5天以前的資料。
2. 閃回查詢無法恢複到表結構改變之前,因為閃回查詢使用的是當前的資料字典。
3. 受到undo_retention參數的影響,對於undo_retention之前的資料,Flashback不保證能Flashback成功。
4. 對drop,truncate等不記錄復原的操作,不能恢複。
5. 普通使用者使用dbms_flashback包,必須通過管理員授權。命令如下:
SQL>grant execute on dbms_flashback to scott;