oracle 恢复表到以前的某个状态

select * from sys.smon_scn_time;
--scn 与时间的对应关系

每隔5分钟,系统产生一次系统时间标记与scn的匹配并存入sys.smon_scn_time表。

select * from student as of scn 592258

就可以看到在这个检查点的表的历史情况。

然后我们恢复到这个检查点

insert into student  select * from student as of scn 592258  where id not in (select id from student) 




  select * from v$transaction ---没有提交的事务。

  select * from flashback_transaction_query; ---回滚事务。 他有一列是    undo_sql 得到他就可以回滚刚才提交的事务。

select * from FLASHBACK_TRANSACTION_QUERY a 
where a.start_timestamp between to_date('2008-12-7 14:40:56','yyyy-MM-dd HH24:mi:ss') and
to_date('2008-12-7 14:59:56','yyyy-MM-dd HH24:mi:ss');

  不论是insert  delete  update 都可以把committ 了的事务给回滚了。

你可能感兴趣的:(oracle,sql)