Oracle閃回查詢恢復delete刪除資料
1、執行 select * from A as of timestamp sysdate-10/1440;
該SQL語會查找出距離現在10分鐘之前A表的所有資料。
sysdate-10/1440表示距離現在10分鐘之前,1440這個數字表示一天有1440分鐘。
如果不寫距離時間,SQL語句可寫成:select * from A as of timestamp sysdate;表示查找出到現在為止A表中的所有資料。
2、從以上查找出的資料中找出被誤刪的資料,再插入到原來的表中就可以了。
Flashback query(閃回查詢)原理
根據undo資訊,利用undo
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;