開啟閃回數(shù)據(jù)庫
創(chuàng)新互聯(lián)-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價比榕城網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式榕城網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋榕城地區(qū)。費用合理售后完善,十余年實體公司更值得信賴。
alter database flashback on;
alter database open;
修改日期時間顯示格式:
alter session set nls_date_format='yyyy-mm-dd hh34:mi:ss';
查看系統(tǒng)視圖 v$flashback_database_log中查看閃回數(shù)據(jù)庫日志信息:
select * from v$flashback_database_log;
閃回數(shù)據(jù)庫:
flashback database to timestamp(to_date('2014-10-11 12:20:11','yyyy-mm-dd hh34:mi:ss'));
閃回恢復(fù)后需要resetlogs 或者noresetlogs 打開:
alter database open resetlogs/noresetlogs;
閃回表:
flashback table tablename to timestamp(to_date('2014-11-10 12:12:12','yyyy-mm-dd hh34:mi:ss'));
閃回回收站:
flashback table tablename to before drop;
刪除回收站中的數(shù)據(jù)可以使用以下命令:;
purge table tablename;
清空回收站:
purge dba_recyclebin;
閃回查詢:
select * from tablename as of timestamp to timestamp(to_date('2014-11-12 10:10:10','yyyy-mm-dd hh34:mi:ss')) where ....;
閃回版本查詢:
select versions_starttime,version_operation,name,score from tablename versions between timestamp minvalue and maxvalue;
閃回事務(wù)查詢:
select table_name,undo_sql from flashback_tracsaction_query where rownum<5;