PS:oracle恢复删除的数据

分为两种方法:scn和时间戳两种方法恢复。sql

1、经过scn恢复删除且已提交的数据数据库

  一、得到当前数据库的scn号spa

select current_scn from v$database;

(切换到sys用户或system用户查询) 
code

    查询到的scn号为:1499223flash

  二、查询当前scn号以前的scntable

    select * from 表名 as of scn 1499220; (肯定删除的数据是否存在,若是存在,则恢复数据;若是不是,则继续缩小scn号)class

  三、恢复删除且已提交的数据date

    flashback table 表名 to scn 1499220;select

2、经过时间恢复删除且已提交的数据方法

  一、查询当前系统时间

    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; //容许更改时间戳

相关文章
相关标签/搜索