Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Question:RMAN DR testing

Re: Question:RMAN DR testing

From: <Kenneth>
Date: Sat, 30 Jul 2005 18:42:13 GMT
Message-ID: <42ebbe01.1000859@news.inet.tele.dk>


On Fri, 29 Jul 2005 02:19:07 GMT, "EdwardNing" <edwardning35(nospam)@hotmail.com> wrote:

>Hi, Group,
>
>I am running a disaster recovery. I take a RMAN backup to disk on Node A
>(d:/backup). I moved all the RMAN backup files(datafile, autobackuped
>controlfile etc) to Node B, but on Node B, I do not have disk D, only disk
>C, so I put all the files to C:/backup, but RMAN keep looking for files at
>D:/backup, how could I tell RMAN that the backup file is now on C:/backup,
>not on D:/backup?
>
>Thanks for your help.

Give version next time.

With 10g it's very simple :

First you register the "new" backuppieces by letting RMAN find them itself:

RMAN> catalog backup start with 'c:\backup';

And answer 'Y';

After that, verify that the backuppices are now registered under both the old (d:\) and the new (c:\) pathname :

RMAN > list backup of database;

Then you unregister the old-path-registrations by letting RMAN find out itself that they have disappeared

RMAN>crosscheck backup;
RMAN>delete expired;

Answer 'Y', and you are done.

With versions < 10g, this can only be applied to datafile copies and archivelogs, not backup pieces. In that case you need some O/S-trick like SUBST.

Received on Sat Jul 30 2005 - 13:42:13 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US