Oracle學習筆記之誤刪資料恢複

來源:互聯網
上載者:User

前記:改bug的時候一不小心誤刪了產生庫上的一條資料,嚇的小心臟直跳,幸好找回來了。

如果是剛剛刪除 可以採用以下方法:

首先用以下 命令查看當時的資料庫參數undo_retention設定。

show parameter undo;

顯示如下:

undo_management string AUTO
undo_retention integer 900
undo_tablespace string UNDOTBS1

 undo_retention(保持力),900單位是秒。即15分鐘。

  修改預設的undo_retention參數設定:

ALTER SYSTEM SET undo_retention=10800 SCOPE=BOTH;

1.如果是刪除了資料

 進行查詢閃回如:

select * from order_list as of timestamp to_timestamp('2013-05-29 09:33:00', 'yyyy-mm-dd hh24:mi:ss') where  pop='20130319016';

然後閃回的資料重新插入到表中:

insert into order_list(select * from order_list as of timestamp to_timestamp('2013-05-29 09:33:00', 'yyyy-mm-dd hh24:mi:ss') where  pop='20130319016');

 你也可以建一個暫存資料表將資料全部恢複到暫存資料表中

上面的那個時間點是誤刪之前的時間,最好是十分接近的時間

2. 如果是表刪除了 

  恢複被刪除的基表

Flashback Table 表名 To Before Drop;
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.