liuyb

一、启用行移动功能

alter table table_name enable row movement ;

二、可查询之前某一个时间点的数据(默认是1440分钟,即24小时内的数据)

select * from table_name as of timestamp to_timestamp(\'2019-07-01 12:00:00\',\'yyyy-mm-dd hh24:mi:ss\') ;

三、恢复数据

flashback table table_name to timestamp to_timestamp(\'2019-07-01 12:00:00\',\'yyyy-mm-dd hh24:mi:ss\') ;

 

分类:

技术点:

相关文章:

  • 2021-11-30
  • 2021-11-30
  • 2021-11-29
  • 2021-08-30
  • 2021-11-13
  • 2021-11-30
  • 2021-11-30
猜你喜欢
  • 2021-12-03
  • 2021-11-30
  • 2021-11-30
  • 2021-11-30
  • 2021-11-30
  • 2021-12-15
相关资源
相似解决方案