What follows might be all hogwash, you could have
tried this:
DECLARE
devtype varchar2(256);
done boolean;
BEGIN
devtype := dbms_backup_restore.deviceallocate('',
params=>'');
dbms_backup_restore.restoresetdatafile;
dbms_backup_restore.restorecontrolfileto('/tmp/foo.bar');
dbms_backup_restore.restorebackuppiece('wherever_my_backups_are',done=>done);
END;
/
which drags a copy of the control file that was
included in the backup into /tmp/foo.bar. (Obviously
this has to be run against a different ie "up"
database).
Then startup nomount the db to be recovered, rman the
'replicate controlfile' and then restore/recover in
the normal way. I think this functionality came in
when they allowed a no-catalog mechanism, so if you
lost everything, you could still make use of a backup.
hth
connor
- JOE TESTA <JTESTA_at_longaberger.com> wrote: > Ok so
the qa environment we've been fooling around
> with rman for testing backup/recovery.
>
> tonite they say " we want a backup restored from
> rman from 2 incarnations ago(for those of u who dont
> know what an incarnation is, its a new version of
> the database that gets created when you do open
> resetlogs <-- if thats wrong please RMAN gurus
> correct me.
>
> So I get out the book, the docs say "in the event
> you have to do this, which should be rare", you must
> do the
> "reset database to incarnation" command.
>
> seems easy enough, fire up rman, startup nomount,
> reset incarnation and it finds the old backups, and
> starts the restore.
>
> so far so good, but then the catch, being a rman
> newbie(8.1.7), i forgot to make a controlfile
> backup, now if i'd had that, this should have been
> cake,restore the control file in nomount mode, mount
> and restore the datafiles, recover the datafiles and
> open resetlogs, did i forget to say, this is a
> NOARCHIVELOGMODE database.
>
> Well, for whatever reason, the database wouldnt
> open, due to using a newer controlfile.
>
> hmmm, i've done this before, i'll just dump the
> controlfile to trace(yes i did this BEFORE the
> restore, just in case of an actual emergency).
>
> rebuild the control file, try the recover again(did
> i say we're going to a particular SCN based on the
> info from list backup/list incarnation commands), no
> deal, damn database will not open.
>
> regroup, wait a minute, rman aint anything special,
> let's do this:
>
> restore the files from rman backup again.
> exit rman
> sqlplus: recover database until scn #######;
> alter database open resetlogs;
>
> rman: <check> resync catalog;
>
> CHOKE, but i expected that,
> rman: reset database;
>
> full catalog sync AND
>
> we're good to go.
>
> Where did go wrong in using RMAN to do the
> recover/restore ???
>
> joe
>
Connor McDonald
http://www.oracledba.co.uk
http://www.oaktable.net
"Remember amateurs built the ark - Professionals built the Titanic"
Do You Yahoo!?
Everything you'll ever need on one web page
from News and Sport to Email and Music Charts
http://uk.my.yahoo.com
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: =?iso-8859-1?q?Connor=20McDonald?=
INET: hamcdc_at_yahoo.co.uk
Fat City Network Services -- 858-538-5051 http://www.fatcity.com
San Diego, California -- Mailing list and web hosting services
---------------------------------------------------------------------
To REMOVE yourself from this mailing list, send an E-Mail message
to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).
Received on Fri Oct 04 2002 - 03:53:21 CDT