Oracle Flashback基礎應用

來源:互聯網
上載者:User

查看使用者是否具有Flashback許可權
 select * from session_privs where privilege like 'FLASHBACK%';
 
授予使用者Flashback許可權
 grant flashback any table to test;
 
恢複剛才刪除的一條資料
 alter database add supplemental log data;
 delete from dept where dname='IT';
 commit;
 select * from dept where dname='IT';
 
查看操作,並使用undo_sql恢複
 select t.start_timestamp,t.commit_timestamp,t.logon_user,t.operation,t.table_name,t.table_owner,t.undo_sql from flashback_transaction_query t where table_name='DEPT';
 

基於時間段恢複
 update dept set dname='china';
 select * from dept;
 commit;
 
開啟對應表的行移動,並使用基於時間段的閃回(10分鐘)
 alter table dept enable row movement;
 flashback table dept to timestamp to_timestamp(sysdate-10/(24*60));
 
恢複刪除的表
 drop table dept;
 flashback table dept to before drop;
 
查看資源回收筒
 select * from user_recyclebin order by droptime desc;

聯繫我們

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