Restore RAC backup to stand alone [message #301020] |
Tue, 19 February 2008 00:31 |
ORA-MAN
Messages: 24 Registered: January 2008 Location: ===
|
Junior Member |
|
|
Hi All,
I have 9i RAC (2 nodes) production DB (using raw devices) taken backup daily to another node using rman.
now, I want to test this backup by restore it to anew 9i host stand alone.
note: both prod & test have same oracle and OS version
Is there any clear procedure?
thanks in advance
|
|
|
|
|
|
|
Re: Restore RAC backup to stand alone [message #301056 is a reply to message #301020] |
Tue, 19 February 2008 01:40 |
ORA-MAN
Messages: 24 Registered: January 2008 Location: ===
|
Junior Member |
|
|
This scenario is talking about restore stand alone db to anew host stand alone also, no mention for RAC as you know each instance of RAC has its own archivelog.
your help is appertained
|
|
|
|
Re: Restore RAC backup to stand alone [message #301095 is a reply to message #301020] |
Tue, 19 February 2008 03:27 |
ORA-MAN
Messages: 24 Registered: January 2008 Location: ===
|
Junior Member |
|
|
thanks Michel.
one more question , what you think about this note in the link.
can I use RESYNC CATALOG to resolve this issue?
Note:
If you perform a test restore only, then do not connect to the recovery catalog when restoring the datafiles. Otherwise, RMAN records information about the restored datafiles to the recovery catalog. This intereferes with future attempts to restore and recover the primary database. If you must use a recovery catalog because the control file is not large enough to contain the RMAN repository data on all of the backups that you need to restore, then export the catalog and import it into a different schema or database and use the copied recovery catalog for the test restore. Otherwise, the catalog considers the restored database as the current target database.
Regards
|
|
|
|
|
|
|
Re: Restore RAC backup to stand alone [message #305182 is a reply to message #301020] |
Mon, 10 March 2008 00:46 |
ORA-MAN
Messages: 24 Registered: January 2008 Location: ===
|
Junior Member |
|
|
hi all,
full restore of my production DB was successfully restored to a test node and up to this point db is mounted.
now when I tried to open DB I got :
---------------------------------------------
SQL> ALTER DATABASE OPEN RESETLOGS;
ALTER DATABASE OPEN RESETLOGS
*
ERROR at line 1:
ORA-01113: file 1 needs media recovery
ORA-01110: data file 1: '/oradata/system_001.dbf'
-----------------------------------------------
I tried to do recover using rman also
run {
set archivelog destination to '/oradata/arch_files';
Allocate CHANNEL t1 DEVICE TYPE 'SBT_TAPE' ;
restore archivelog all;
recover database;
Release channel t1;
}
the result is :
RMAN-00571: ====================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ========
RMAN-00571: ====================================================
RMAN-03002: failure of restore command at 03/10/2008 08:12:57
RMAN-06026: some targets not found - aborting restore
RMAN-06025: no backup of log thread 2 seq 5179 scn 7248975219054 found to restore
notes : it shows many lines as RMAN-06025 !!
also I did not find any redo file restored !!
Is there any missing point on this case ?
thanks
|
|
|