闪回
--查询历史数据
select * from 表名 as of timestamp to_timestamp(‘20210811 17:30:00‘,‘yyyymmdd HH24:mi:ss‘);
--开启表的行移动功能
alter table 表名 enable row movement;
--闪回
flashback table 表名 to timestamp to_timestamp(‘20210811 17:30:00‘,‘YYYYMMDD HH24:MI:SS‘);
原文:https://www.cnblogs.com/m6785753/p/15131587.html