《2022年在oracle中恢复被delete的表 .pdf》由会员分享,可在线阅读,更多相关《2022年在oracle中恢复被delete的表 .pdf(4页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、ORACLEDELETE 表后的恢复(一)连接到数据库:C:Documents and SettingsAdministratorsqlplus system/saotSQL*Plus:Release 9.0.1.0.1-Production on Wed May 13 19:13:53 2009(c)Copyright 2001 Oracle Corporation.All rights reserved.Connected to:Oracle Database 10g Enterprise Edition Release 10.2.0.1.0-Production With the Par
2、titioning,OLAP and Data Mining options SQL(二)创建表SQL create table t(id int);Table created.SQL(三)插入 10000 条数据SQL declare 2 i int:=1;3 begin 4 for i in 1.10000 loop 5 insert into t values(i);6 end loop;7 end;8/PL/SQL procedure successfully completed.SQL select count(*)from t;COUNT(*)-10000 SQL commit;C
3、ommit complete.SQL(四)误删除所有记录,并且提交更改。SQL select count(*)from t;COUNT(*)-10000 SQL delete from t;10000 rows deleted.SQL select count(*)from t;COUNT(*)-0 SQL rollback;名师资料总结-精品资料欢迎下载-名师精心整理-第 1 页,共 4 页 -Rollback complete.SQL select count(*)from t;COUNT(*)-10000 SQL delete from t;10000 rows deleted.SQL
4、commit;Commit complete.SQL select count(*)from t;COUNT(*)-0 SQL rollback;Rollback complete.SQL select count(*)from t;COUNT(*)-0 SQL(四)获得当前 SCN(Oracle 仅根据 SCN 执行恢复,它定义了数据库在某个确切时刻提交的版本。在事务提交时,它被赋予一个唯一的标示事物的SCN)获得当前 SCN 的目的是:可以进行闪回查询尝试.SQL select dbms_flashback.get_system_change_number from dual;GET_SY
5、STEM_CHANGE_NUMBER-961371 SQL select count(*)from t as of scn 9611370;COUNT(*)-0(五)确定 delete 时候的 scn 号1 建立一个临时表用于存储在scn 为多少的时候执行了delete create table temp(count int,scn int);2 往临时表中加入数据declare i int:=961000;begin 名师资料总结-精品资料欢迎下载-名师精心整理-第 2 页,共 4 页 -for i in 961000.961371 loop insert into temp(scn)val
6、ues(i);update temp set count=(select count(*)from t as of scn i)where scn=i;end loop;end;/3 查询 scn 为多少的时候执行了delete SQL select*from temp where count 0;COUNT SCN-10000 961147 10000 961148 10000 961149 10000 961150 10000 961151 10000 961152 10000 961153 10000 961154 10000 961155 10000 961156 10000 9611
7、57 10000 961158 10000 961159 10000 961160 10000 961161 10000 961162 SQL select count(*)from t as of scn 961162;COUNT(*)-10000 SQL select count(*)from t as of scn 961163;COUNT(*)-0 我们看到在 SCN=961162 时数据都在。即 scn 为 961163 就是我们 DELETE 的事务号。(六)恢复数据SQL insert into t select*from t as of scn 961162;10000 rows created.名师资料总结-精品资料欢迎下载-名师精心整理-第 3 页,共 4 页 -SQL select count(*)from t;COUNT(*)-10000 SQL(七)清理 temp 表。SQL drop table temp;Table dropped.SQL commit;Commit complete.SQL select count(*)from t;COUNT(*)-10000(八)总结DELETE 的事务号也可以用logminer 来方便的获得。系列实验待续名师资料总结-精品资料欢迎下载-名师精心整理-第 4 页,共 4 页 -
限制150内