yr1126

步骤:

1.查询删除时间点之前的数据,确认好时间点

select * from TEST as of timestamp to_timestamp(\'2021-12-08 17:00:00\', \'yyyy-mm-dd hh24:mi:ss\');

2.开启行移动
alter table TEST enable row movement;

3.数据恢复到那个时间点
flashback table TEST to timestamp to_timestamp(\'2021-12-08 17:00:00\',\'yyyy-mm-dd hh24:mi:ss\');

4.关闭行移动
alter table TEST disable row movement

 

参考路径:https://blog.csdn.net/weixin_41364238/article/details/109029803

分类:

技术点:

相关文章:

  • 2021-11-30
  • 2021-09-19
  • 2021-12-16
  • 2021-12-09
  • 2022-12-23
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-30
  • 2021-11-29
  • 2022-12-23
  • 2022-12-23
  • 2021-08-08
  • 2022-12-23
  • 2021-09-13
相关资源
相似解决方案