时间:2021-07-01 10:21:17 帮助过:4人阅读
select current_scn from v$database;
如图:
查询到当前的SCN为14543776308552,查询当前SCN之前的SCN对应的表数据。
select * from 表名 as of scn 14543776308550; -- 确定删除的数据是否存在,如存在,则恢复数据;否则继续缩小scn号
flashback table 表名 to scn 14543776308550;
select to_char(sysdate, ‘yyyy-mm-dd hh24:mi:ss‘) from dual;
select * from 表名 as of timestamp to_timestamp(‘2018-02-13 15:48:00‘, ‘yyyy-mm-dd hh24:mi:ss‘); -- 如果不是,则继续缩小时间范围
flashback table 表名 to timestamp to_timestamp(‘2018-02-13 15:48:00‘,‘yyyy-mm-dd hh24:mi:ss‘);
备注:如果执行恢复数据SQL出现错误,可以执行: alter table 表名 enable row movement; //允许更改时间戳
Oracle恢复删除数据
标签:date inf tab ble nbsp img strong 两种方法 amp