大量数据文件恢复时,set new…

来源:互联网 发布:bilibili直播点歌软件 编辑:程序博客网 时间:2024/06/15 07:55

需要把大量数据文件恢复到新的目录(如RMAN异机恢复),可以设置DB_CREATE_FILE_DEST参数,使用OMF自动生成文数据文件名,比拼SQL还要简单快速

 

set newname for datafile * to NEW;

 

参考文档:

 

Goal
 Solution

--------------------------------------------------------------------------------


Applies to:
Oracle Database - Standard Edition - Version 10.1.0.2 andlater
Oracle Database - Enterprise Edition - Version 9.0.1.2 andlater
Information in this document applies to any platform.
***Checked for relevance on 29-Apr-2013***

 

Goal
When you must restore the database the same directory structure isnot always there. If you have a database containing 1000s ofdatafiles it can be very tedious to setup the set newname commandsfor all the datafiles.
Using sqlplus we can extract the information we need into a filewhich can then be easily modifed and executed as an RMAN script tocomplete the task.

Solution
You are restoring or duplicating the target database to a new hostusing RMAN. The datafiles are not OMF files and you want to makethem OMF. Using 'set newname for datafile to NEW' will generate anew OMF filename for the restored datafile.
This will avoid the manual entry or vi/notepad editing of similaroutput. Using this output the datafiles will be restored to theDB_CREATE_FILE_DEST. If this parameter is not set you must add thecorrect path as in '/path/NEW' will direct the files to the newlocation and give an OMF filename.

sqlplus /nolog
connect system/manager

set echo off pages 0 feed off sqlp #
spool /path/setnewnamedf.lst
select 'set newname for datafile '||file#||' to NEW;' fromv$datafile;
-- select 'set newname for datafile '||file#||' to /newpath/NEW;'from v$datafile;
spool offThere are 2 select statements above with slightlydifferent output.

Select #1 Output:

set newname for datafile 1 to NEW;
set newname for datafile 2 to NEW;
set newname for datafile 3 to NEW;
set newname for datafile 4 to NEW;
set newname for datafile 5 to NEW;

Select #2 Output:

set newname for datafile 1 to /newpath/NEW;
set newname for datafile 2 to /newpath/NEW;
set newname for datafile 3 to /newpath/NEW;
set newname for datafile 4 to /newpath/NEW;
set newname for datafile 5 to /newpath/NEW;
In this scenario you do not use OMF naming for your files and youwant to continue to control the datafile names. To generate setnewname commands to point to an ASM volume execute the sql below.It will create a file that you just add your restore command tocomplete the script and execute in RMAN inside a runblock. 

sqlplus /nolog
connect system/manager

set echo off pages 0 feed off sqlp #
spool /path/setnewnamedf.lst
select 'set newname for datafile '||file#||' to ''+DG'';' fromv$datafile;
spool offSelect #3 Output:

set newname for datafile 1 to '+DG';
set newname for datafile 2 to '+DG';
set newname for datafile 3 to '+DG';
set newname for datafile 4 to '+DG';
set newname for datafile 5 to '+DG';
With the following query you keep the same path and name as on theoriginal target. Using vi global search and replace you changechange the path to the new directory using %s. This becomes veryuseful when there are 1000s of files to update. If using multipledirectories you can split the output to change the path all in afile then merge the files or find a quicker method. Here is theexample output of before and after the search andreplace. 

set echo off pages 0 feed off sqlp #
spool setnewnamedf.lst
select 'set newname for datafile '||file#||' to '''||name||''';'from v$datafile;
spool offSelect #4 Output: Before change:

set newname for datafile 1 to'/u01/64bit/app/oracle/oradata/V102REP1/system01.dbf';
set newname for datafile 2 to'/u01/64bit/app/oracle/oradata/V102REP1/undotbs01.dbf';
set newname for datafile 3 to'/u01/64bit/app/oracle/oradata/V102REP1/sysaux01.dbf';
set newname for datafile 4 to'/u01/64bit/app/oracle/oradata/V102REP1/users01.dbf';
set newname for datafile 5 to'/u01/64bit/app/oracle/oradata/V102REP1/fujitsu_1.dbf';
Command to change the above path:

 :%s/\/dir1\/dir2/\/newdir1\/newdir2/g:%s/\/u01\/64bit\/app\/oracle\/oradata\/V102REP1/\/newpath/gAfterexecuting the search and replace we are left with:

set newname for datafile 1 to '/newpath/system01.dbf';
set newname for datafile 2 to '/newpath/undotbs01.dbf';
set newname for datafile 3 to '/newpath/sysaux01.dbf';
set newname for datafile 4 to '/newpath/users01.dbf';
set newname for datafile 5 to '/newpath/fujitsu_1.dbf';

Using these methods, or something similar with other editors,you can quickly setup a restore or duplicate script to be used on anew host and directory structure no matter the number of files.


--------------------------------------------------------------------------------
 

0 0
原创粉丝点击