恢複oracle 中誤刪的表 或delete 刪掉的資料恢複____oracle

來源:互聯網
上載者:User

查看資源回收筒中表  drop表之後的恢複

select object_name,original_name,partition_name,type,ts_name,createtime,droptime from recyclebin;

SQL>flashback table "BIN$b+XkkO1RS5K10uKo9BfmuA==$0" to before drop;


delete 刪除資料恢複:

利用oracle提供的閃回方法,如果在刪除資料後還沒做大量的操作(只要保證被刪除資料的塊沒被覆寫),就可以利用閃回方式直接找回刪除的資料
具體步驟為:

*確定刪除資料的時間(在刪除資料之前的時間就行,不過最好是刪除資料的時間點)

*用以下語句找出刪除的資料:select * from 表名 as of timestamp to_timestamp('刪除時間點','yyyy-mm-dd hh24:mi:ss')

*把刪除的資料重新插入原表:

     insert into 表名 (select * from 表名 as of timestamp to_timestamp('刪除時間點','yyyy-mm-dd hh24:mi:ss'));注意要保證主鍵不重複。


註:必須9i或10g以上版本支援,flashback無法恢複全文索引


轉自:http://www.cnblogs.com/xd502djj/archive/2010/09/19/1831346.html

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.