Oracle表和表資料恢復

2022-05-06 18:42:08 字數 1334 閱讀 1776

oracle資料庫表及表資料的恢復

對誤刪的表,只要沒有使用 purge 永久刪除選項,那麼基本上是能從 flashback table 區恢復回來的。

資料表和其中的資料都是可以恢復回來的,記得 flashback table 是從 oralce 10g 提供的,一般步驟有:

a.從 flashback table 裡查詢被刪除的資料表

select * from recyclebin order by droptime desc

b.執行表的恢復

flashback table '需要恢復的表名' to before drop

對誤刪的表記錄,只要沒有 truncate 語句,就可以根據事務的提交時間進行選擇恢復。

這功能也是 oracle 10g 以上提供的,一般步驟有:

a. 先從 flashback_transaction_query 檢視裡查詢,檢視提供了供查詢用的表名稱、事務提交時間、undo_sql等字段。

select * from flashback_transaction_query where table_name='需要恢復資料的表名(大寫)';

b.查詢刪除的時間點

select to_char(sysdate, 'yyyy-mm-dd hh24:mi:ss') time,

to_char(dbms_flashback.get_system_change_number) scn

from dual;

或者你知道大概記得刪除點,你也可以這樣試試查詢,找出刪除前的時間點

select * from '需要恢復資料的表名' as of timestamp to_timestamp('時間點', 'yyyy-mm-dd hh24:mi:ss');

c.進行資料恢復

通過第二步找到資料丟失的時間點,恢復極為簡單,語句為

flashback table '需要恢復資料的表名' to timestamp to_timestamp('資料丟失的前一時間點','yyyy-mm-dd hh24:mi:ss');

alter table table_name enable row movement;

其實找到資料丟失前的時間點後,恢復資料也可以將需要恢復的資料直接插入到目標表中

insert into '資料丟失的表' select * from t of timestamp to_timestamp('時間點', 'yyyy-mm-dd hh24:mi:ss') where .......;

Oracle 表和表資料恢復

對誤刪的表,只要沒有使用 purge 永久刪除選項,那麼基本上是能從 flashback table 區恢復回來的。資料表和其中的資料都是可以恢復回來的,記得 flashback table 是從 oralce 10g 提供的,一般步驟有 a.從 flashback table 裡查詢被刪除的資料表...

Oracle表資料恢復

alter table 表名 enable row movement 2 執行表資料恢復語句,需明確恢復的表名和恢復時間節點。flashback table 表名 to timestamp to timestamp 時間點 yyyy mm dd hh24 mi ss 注意 如有需要 1 通過flas...

oracle恢復表資料

經常可能會因為某些誤操作等原因導致oracle資料庫表裡的資料發生變化,不過沒關係,用這條語句可以查詢最近幾個小時內的資料 具體多久不一定,自行測試 既然能查到,恢復當然就解決了。查詢該錶60分鐘前的資料 select from table as of timestamp systimestamp ...