-------------------------------------------------------begin-------------------------------------------------------

1、查询commit之前的数据(这一步是为了确认第3步的回退时间)

 select * from 表名 as of timestamp to_timestamp('2018-07-25 11:35:00', 'yyyy-mm-dd hh24:mi:ss');
alter table 表名 enable row movement;

3、执行闪回语句

flashback table 表名 to timestamp to_timestamp('2018-07-25 11:35:00', 'yyyy-mm-dd hh24:mi:ss');

亲测,回退成功。

-----------------------------------------------------------------------------

-------------------------------------------------------end-------------------------------------------------------磨刀不误砍柴工

05-11 23:03