oracle資料刪除恢復

2021-08-17 09:08:52 字數 1276 閱讀 7762



分為兩種方法: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;

比較麻煩,必須反覆查詢scn號。

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

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');  (如果不是,則繼續縮小範圍)

此時查詢出的資料為當時的資料狀況。

比如:a表中有a.id = 1資料,2017-07-20 12:00:00建立,2017-07-20 13:00:00刪除,在此sql中的時間必須是在此段時間內:

select * from a as of timestamp to_timestamp('2017-07-20 12:30:30','yyyy-mm-dd hh24:mi:ss') where id = 1;

當查詢出來之後,就可以再次插入了:

insert into a 

select * from a as of timestamp to_timestamp('2017-07-20 12:30:30','yyyy-mm-dd hh24:mi:ss') where id = 1;

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

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

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

特別注意:在更改後必須執行 alter table 表名 disable row movement; //不允許更改時間戳

恢復Oracle刪除的資料

select t.time dp,t.scn from sys.smon scn time t order by t.time dp desc 1 2014 7 1 11 05 47 225286134 2 2014 7 1 11 00 19 225285926 3 2014 7 1 10 57 4...

oracle恢復刪除的資料

分為兩種方法 scn和時間戳兩種方法恢復。一 通過scn恢復刪除且已提交的資料 1 獲得當前資料庫的scn號 select current scn from v database 切換到sys使用者或system使用者查詢 查詢到的scn號為 1499223 2 查詢當前scn號之前的scn sel...

oracle恢復刪除的資料

分為兩種方法 scn和時間戳兩種方法恢復。一 通過scn恢復刪除且已提交的資料 1 獲得當前資料庫的scn號 select current scn from v database 切換到sys使用者或system使用者查詢 查詢到的scn號為 1499223 2 查詢當前scn號之前的scn sel...