oracle資料恢復

2021-07-16 04:40:38 字數 788 閱讀 9097

分為兩種方法:scn和時間戳兩種方法恢復。

一、通過scn恢復刪除且已提交的資料

1、獲得當前資料庫的scn號

select current_scn from v$database; (切換到sys使用者或system使用者查詢) 

查詢到的scn號為:1499223

2、查詢當前scn號之前的scn

select * from 表名 as of scn 1499220; (確定刪除的資料是否存在,如果存在,則恢復資料;如果不是,則繼續縮小scn號)

3、恢復刪除且已提交的資料

flashback table 表名 to scn 1499220;

二、通過時間恢復刪除且已提交的資料

1、查詢當前系統時間

select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;

2、查詢刪除資料的時間點的資料

select * from 表名 as of timestamp to_timestamp('2013-05-29 15:29:00','yyyy-mm-dd hh24:mi:ss');  (如果不是,則繼續縮小範圍)

3、恢復刪除且已提交的資料

flashback table 表名 to timestamp to_timestamp('2013-05-29 15:29:00','yyyy-mm-dd hh24:mi:ss');

注意:如果在執行上面的語句,出現錯誤。可以嘗試執行 alter table 表名 enable row movement; //允許更改時間戳

Oracle資料恢復

恢復delete掉的資料 恢復5分鐘之前的資料 insert into flow task 20130115 select from flow task 20130115 as of timestamp sysdate 5 1440 恢復時間點的資料。insert into flow task 20...

Oracle 資料恢復

一 恢復drop刪除的表 flashback table tb e wear to before drop 二 恢復delete刪除的資料 1.flashback query 基於回滾段的閃回查詢 flashback query 功能 閃回到某個時間點 select from t co area a...

Oracle資料恢復

昨天工作的時候執行了一套更改表資料的sql語句,但是忘了加限制條件,結果把一張表的一列值全都改了。今天在恢復的過程 先把測試庫和版本庫的這張表的資料匯出來,然後用版本庫的資料去覆蓋測試庫的資料。在匯出表的過程遇到報錯2016 4 19 星期二 16 00 00 is not a valid date...