利用閃回查看oracle表曆史時刻資料

來源:互聯網
上載者:User

標籤:閃回查詢

 

1.查看錶曆史時刻資料

select * from tab_test AS OF TIMESTAMP to_timestamp(‘20140917 10:00:00‘,‘yyyymmdd hh24:mi:ss‘);

 

2、利用flashback table恢複表到過去某一時刻

alter table tab_test enable row movement; flashback table tab_test to timestamp (‘20140917 10:00:00‘,‘yyyymmdd hh24:mi:ss‘);alter table tab_test disable row movement;

 

3、查看過去某一段時間內對錶的操作,以確認需要恢複到的時間點

select SQL_TEXT,LAST_ACTIVE_TIME from v$sqlarea where LAST_ACTIVE_TIME >to_date(‘20140917 10:00:00‘,‘yyyymmdd hh24:mi:ss‘) and SQL_TEXT like ‘%tab_test%‘;

 

4、確認是否開啟閃回

select log_mode,flashback_on from v$database;

本文出自 “composer” 部落格,請務必保留此出處http://zuoqujia.blog.51cto.com/9151800/1554527

利用閃回查看oracle表曆史時刻資料

聯繫我們

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