方式一:
1.开启表的行移动
alter table 表名 enable row movement;
2.查看此表在某一时间点的数据
select * from 表名 as of timestamp to_timestamp('2021-03-29 15:55:12','yyyy-mm-dd hh24:mi:ss');
3.恢复数据
flashback table 表名 to timestamp to_timestamp('2021-03-29 15:55:12','yyyy-mm-dd hh24:mi:ss');
4.关闭行移动
alter table 表名 disable row movement;
评论区