Oracle数据回滚的全过程
前言
最近在修复一个比较老的项目报表的bug的时候,因为对该项目不太熟悉,导致生产环境数据修改有误,于是求助导师帮忙回滚数据,现学习一下oralce数据回滚以备不时之需。
查看某个时间点的表的数据
select * from 表名 as of timestamp to_timestamp('2019-04-15 22:00:38', 'yyyy-mm-dd hh24:mi:ss');
开启闪回,如果不开启无法进行闪回
alter table 表名 enable row movement;
关闭闪回,回滚数据之后需要进行关闭
alter table 表名 disable row movement;
闪回表数据到某个时间点
flashback table 表名 to timestamp to_timestamp('2019-04-15 22:00:38', 'yyyy-mm-dd hh24:mi:ss');
drop表
drop table 表名;
查询数据库回收站记录
select object_name,original_name, type from user_recyclebin;
查询被删除的表对象
上面的object_name便是这里被删除的表在数据库回收站中的临时表名bin$djh3j69wqfgwda1d76/9na==$0
select * from "bin$djh3j69wqfgwda1d76/9na==$0";
闪回恢复被删除的表对象
flashback table 表名 to before drop;
查看 delete 及 update 操作修改的数据
select * from 表名 as of timestamp to_timestamp('2019-04-16 21:43:38', 'yyyy-mm-dd hh24:mi:ss') minus select * from 表名;
恢复 delete 及 update 操作修改的数据
将恢复 表至 2019-04-16 21:43:38 时点,恢复数据为因 delete 及 update 操作修改的数据。
注意:需要通过唯一条件id 定位数据。
merge into 表名 a using (select * from 表名 as of timestamp to_timestamp('2019-04-16 21:43:38', 'yyyy-mm-dd hh24:mi:ss') minus select * from 表名) b on (a.id = b.id) when matched then update set a.col = b.col, when not matched then insert values (b.id, b.col);
查看 insert 操作修改的数据
select * from 表名 minus select * from 表名 as of timestamp to_timestamp('2019-04-16 21:45:38', 'yyyy-mm-dd hh24:mi:ss');
恢复 insert 操作修改的数据
其中将恢复 表至 2019-04-16 21:45:38 时点,恢复数据为因 insert 操作修改的数据。
注意:需要通过唯一条件 unique_id 定位数据。
delete from 表名 a where exists (select 1 from (select * from 表名 minus select * from 表名 as of timestamp to_timestamp('2019-04-16 21:45:38', 'yyyy-mm-dd hh24:mi:ss')) b where a.id = b.id);
如果相隔时间过长的话,数据就回滚不了了,所以一旦数据出现问题,就要立即进行处理。
参考博客
https://www.cnblogs.com/autopenguin/p/5952671.html
https://www.jb51.net/article/147509.htm
到此这篇关于oracle数据回滚的文章就介绍到这了,更多相关oracle数据回滚内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
上一篇: Springboot升级至2.4.0中出现的跨域问题分析及修改方案
下一篇: mongoDB基础学习