Oracle 修改 提交后 回退

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');

只是针对ORACLE 处理。


---------------------



来源:CSDN
原文:https://blog.csdn.net/dan521chuang/article/details/78431912

posted @ 2019-05-10 15:39  不会游泳的鱼丶  阅读(1089)  评论(0编辑  收藏  举报