1、查询某一时间点该表的数据
select * from 表 as of timestamp to_timestamp('2020-07-02 12:11:11','yyyy-mm-dd hh24:mi:ss');
2、对表进行行迁移
alter table 表 enable row movement;
3、回滚表到时间节点
flashback table 表 to timestamp to_timestamp('2020-07-02 12:11:11','yyyy-mm-dd hh24:MI:SS');