一、通过scn恢复删除且已提交的数据
1、获得当前数据库的scn号
select current_scn from v$database; (切换到sys用户或system用户查询)
查询到的scn号为:1499223
2、查询当前scn号之前的scn
select * from 表名 as of scn1499220; (确定删除的数据是否存在,如果存在,则恢复数据;如果不是,则继续缩小scn号)
3、恢复删除且已提交的数据
flashback table 表名 to scn1499220;
二、通过时间恢复删除且已提交的数据
1、查询当前系统时间
select to_char(sysdate,'yyyy-mm-dd hh24:mi:ss') from dual;
select * from 表名 as of timestamp to_timestamp('2013-05-29 15:29:00','yyyy-mm-dd hh24:mi:ss'); (如果不是,则继续缩小范围)
flashback table 表名 to timestamp to_timestamp('2013-05-29 15:29:00','yyyy-mm-dd hh24:mi:ss');
注意:如果在执行上面的语句,出现错误。可以尝试执行alter table 表名 enable row movement; //允许更改时间戳
三、通过还原点恢复删除且已提交的数据
select * from sys.smon_scn_time order by time_dp desc;
2、找回该还原点时间上的数据
select * from 表名 as of timestamp to_timestamp('2013-05-29 15:29:00','yyyy-mm-dd hh24:mi:ss');
3、恢复删除且已提交的数据
总结:删除数据的之后的补救,其实是亡羊补牢。在对数据进行大规模的操作之前,还是应该先对数据备份,万一出现失误直接恢复就是了。切记,在进行update语句的时候 一定要加where限制条件!
原文链接:https://www.f2er.com/oracle/212275.html