码迷,mamicode.com
首页 > 数据库 > 详细

Oracle恢复删除数据

时间:2018-02-13 15:44:43      阅读:201      评论:0      收藏:0      [点我收藏+]

标签:date   inf   tab   ble   nbsp   img   strong   两种方法   amp   

  可以通过SCN和时间戳两种方法来恢复。

一、通过SCN恢复删除且已经提交的数据

  • 查询当前SCN
select current_scn from v$database; 

  如图:

技术分享图片

  • 缩小范围进行查询

  查询到当前的SCN为14543776308552,查询当前SCN之前的SCN对应的表数据。

select * from 表名 as of scn 14543776308550; -- 确定删除的数据是否存在,如存在,则恢复数据;否则继续缩小scn号
  • 恢复数据
flashback table 表名 to scn 14543776308550;

二、通过时间戳进行恢复

  • 查询当前的系统时间
select to_char(sysdate, yyyy-mm-dd hh24:mi:ss) from dual;
  • 查询删除数据时间点之前的数据
select * from 表名 as of timestamp to_timestamp(2018-02-13 15:48:00, yyyy-mm-dd hh24:mi:ss); -- 如果不是,则继续缩小时间范围
  • 恢复数据
flashback table 表名 to timestamp to_timestamp(2018-02-13 15:48:00,yyyy-mm-dd hh24:mi:ss);

   备注:如果执行恢复数据SQL出现错误,可以执行: alter table 表名 enable row movement; //允许更改时间戳

 

Oracle恢复删除数据

标签:date   inf   tab   ble   nbsp   img   strong   两种方法   amp   

原文地址:https://www.cnblogs.com/BillyYoung/p/BillyYang_oracle.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!