// 查询该时间段 这个表的状态   (就是表状态正常的时刻    下面的时间仅用于举例)
select * from 表名 as of timestamp to_timestamp('2019-09-26 11:07:00', 'yyyy-mm-dd hh24:mi:ss');
// 开启闪回
alter table 表名 enable row movement;
// 把表的状态闪回到这个时间段(下面的时间仅用于举例)
flashback table 表名  to timestamp TO_TIMESTAMP('2019-09-26 11:07:00', 'yyyy-mm-dd hh24:mi:ss');
// 关闭闪回
alter table 表名 disable row movement;

 

参考:https://www.cnblogs.com/JohnsonLiu/p/11465973.html  

相关文章:

  • 2022-12-23
  • 2021-09-19
  • 2021-03-28
  • 2021-12-24
  • 2021-07-02
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-11
  • 2022-12-23
  • 2021-11-06
  • 2022-12-23
  • 2021-08-14
相关资源
相似解决方案