强大的ORACLE10G开始有一个东西叫闪回:flashback技术。它支持还原一定时间内的数据。包括整个数据库,表等。
在演示前确认以下几点:
1、用户有对dbms_flashback包有执行权限!----若没有 grant execute on dbms_flashback to username
2、进行闪回查询必须设置自动回滚段管理,在init.ora设置参数UNDO_MANAGEMENT=AUTO,参数UNDO_RETENTION=n,决定了能往前闪回的最大时间,值越大
需要越多Undo空间。
show parameter undo_retention;
alter sysstem set undo_retention = 7200; ----7200秒即2小时
3.开启行移动
alter table tbscmp enable row movement;
接下来演示最常用的还原表数据的方法:
select * from tbscmp;
实验开始:先删除掉其中一条数据508094
delete tbscmp where code='508094';
--确认删除
select * from tbcmp where code='508094';
---使用versions查询出 versions_xid
select versions_xid,code,name from tbscmp versions between scn minvalue and maxvalue where code='508094';
--查出还原sql
select operation,undo_sql from flashback_transaction_query where xid=hextoraw('03001500A2110100')
---使用还原sql
insert into "SWSERP02"."TBSCMP"("TBSCMPID","CODE","NAME","FULLNAME","KIND","TBSAREAID","PARENTID","LAYERNO","LAYERINDEX","TBSCMPLEVELID"。。。。
--再次查询确认已还原
select * from tbscmp where code='508094';
下面使用SCN号进行还原
--再删除
delete tbscmp where code='508094';
---使用versions查询出 versions_xid
select versions_xid,code,name from tbscmp versions between scn minvalue and maxvalue where code='508094';
--查询此操作对应的闪回SCN
select operation,start_scn from flashback_transaction_query where xid=hextoraw('03001500A2110100');
--确认开启行移动功能
alter table tbscmp enable row movement;
--使用SCN闪回
flashback table tbscmp to SCN 101943274;
--再次查询确认已还原
select * from tbscmp where code='508094';
推荐使用UNDOSQL,因为使用SCN会连在这期间的其他操作一起还原