您好,登錄后才能下訂單哦!
用備份控制文件的恢復(fù),控制文件中不包含數(shù)據(jù)文件,但聯(lián)機(jī)日志中有
alter database backup controlfile to 'D:\control.ctl';
create tablespace tp1 datafile 'D:/tp1.dbf' size 10M;
create table t1(id int,name varchar2(10)) tablespace tp1;
insert into t1 values(1,'pl1');
commit;
停服務(wù)==>services.msc==>停oracle進(jìn)程
rm -rf control*
shutdown abort;
拷貝 D:\control.ctl D:\app\administrator\oradata\orcl\control01.ctl
startup mount;
select file#,checkpoint_change# from v$datafile;
select file#,checkpoint_change# from v$datafile_header;
alter database open; //提示控制文件舊了
recover database using backup controlfile;
select * from v$log 找current的log
輸入D:\oradata\orcl\redo02.log --狀態(tài)是current
提示有一個文件不識別
select file#,name from v$datafile;
alter database rename file'D:\app/administrator\product\11.2.0\dbhome_1\database\UNNAMED00005' to 'D:\tp1.dbf';
recover database using backup controlfile;
輸入:/oradata/orcl/redo02.log --一select * from v$log;
alter database open resetlogs;
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。