ORACLE 闪回操作

查询该时间段 这个表的状态
select * from 表名

as of timestamp to_timestamp('2018-10-12 9:30:00', 'yyyy-mm-dd hh24:mi:ss');

开启闪回
alter table 表名 enable row movement;

把表的状态闪回到这个时间段
flashback table 表名  to timestamp TO_TIMESTAMP('2018-10-12 9:30:00', 'yyyy-mm-dd hh24:mi:ss');

用完记得关闭闪回
alter table 表名 disable row movement

你可能感兴趣的:(Oracle)