oracle恢復刪除的數據

分爲兩種方法:scn和時間戳兩種方法恢復。數據庫

1、經過scn恢復刪除且已提交的數據flash

  一、得到當前數據庫的scn號table

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

    查詢到的scn號爲:1499223select

  二、查詢當前scn號以前的scn方法

    select * from 表名 as of scn 1499220; (肯定刪除的數據是否存在,若是存在,則恢復數據;若是不是,則繼續縮小scn號)im

  三、恢復刪除且已提交的數據(若是不是企業版,有可能不支持閃回這個特性)時間戳

    flashback table 表名 to scn 1499220;數據

2、經過時間恢復刪除且已提交的數據查詢

  一、查詢當前系統時間

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

  二、查詢刪除數據的時間點的數據

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

  三、恢復刪除且已提交的數據

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

    注意:若是在執行上面的語句,出現錯誤。能夠嘗試執行 alter table 表名 enable row movement; //容許更改時間戳

相關文章
相關標籤/搜索