Capricorn 发表于 2013-10-27 23:18:40

闪回技术

一:闪回删除
   
   flashback table “回收站的文件” to before drop恢复回收站的文件


二:闪回表

      Sselect current_scn from v$database
    create table c (id int)

insert into c select * from a as of scn+scn号
insert into c select * from a as of scn+scn号


uptada a set id=1000
alter session set nls_date_foerat=‘yyyy-mm-dd hh24:mi:ss’;
flashback table a to timestamp to_date(恢复的时间)



   
页: [1]
查看完整版本: 闪回技术