1.查询你执行update 语句之前的数据 精确到什么时间

  select * from 表名 as of timestamp to_timestamp('2017-07-21 17:16:38', 'yyyy-mm-dd hh24:mi:ss');

2.开启可移动数据命令,执行完就可以回滚数据

   alter table 表名 enable row movement;

3.回滚 update 语句前的数据

    flashback table 表名 to timestamp TO_TIMESTAMP('2017-07-21 17:16:38', 'yyyy-mm-dd hh24:mi:ss');

 

注:可以回滚delete数据,不可以回滚truncate数据。

 

相关文章:

  • 2021-05-24
  • 2021-09-19
  • 2021-11-01
  • 2022-12-23
  • 2022-12-23
  • 2021-12-03
  • 2021-12-29
猜你喜欢
  • 2021-11-25
  • 2021-10-05
  • 2021-12-04
  • 2021-12-14
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案