Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> RMAN - OFFLINE Backup with noarchivelog
Hi Gururs,
Can any body give some idea how can I do a offline backup & restore of Noarchivelog mode Database
I have gone thru the oracle8i backup recovery manual, I did not see much about Offline backup with Noarchivelog mode. My question is how do you backup online redo log files using rman?
The steps I followed are
1) shutdown normal 2) connect to rman, startup mount, resync catalog 3) run {
4) open the database, create some tables(Just to test the resore )
5) Shutdown database
6) connect to rman, startup nomount
7)run {
allocate channel t1 type 'SBT_TAPE'
parms 'ENV=(NSR_SERVER=searchbu)';
allocate channel t2 type 'SBT_TAPE'
parms 'ENV=(NSR_SERVER=searchbu)';
set command id to 'bkrs';
restore controlfile;
alter database mount;
restore database; recover database; release channel t1; release channel t2;
8) it fails with the following message.
=-=-=-=-=-=-=-=- RMAN-00571: =========================================================== RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== RMAN-00571: =========================================================== RMAN-03002: failure during compilation of command RMAN-03013: command type: recover RMAN-03002: failure during compilation of commandRMAN-03013: command type: recover(4)
RMAN> **end-of-file**
RMAN> exit
=-=-=-=-=-=-=-=-=-=-=-=-=-=-
Obviously as onlinne redologs are not backedup, it will fail. I can't do media recovery as database is in Noarchivelog mode. Received on Thu Jun 08 2000 - 18:43:16 CDT