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: RMAN 8i question - Disaster Recovery and online redo logs...

Re: RMAN 8i question - Disaster Recovery and online redo logs...

From: Ravi <ravisista_at_hotmail.com>
Date: 19 Jan 2006 12:45:57 -0800
Message-ID: <1137703557.932218.107080@g49g2000cwa.googlegroups.com>

BD wrote:
> Hi, all.

(skipped)

You are trying to do a complete recovery. You removed your online redo logs, so you can only do an incomplete recovery. Read the RMAN documentation regarding Incomplete (Point in time) recovery and look for "set until time ..." or "set until logseq ..."

Your (new) STEP 10 should look something like:

startup mount
rman nocatalog target /
run {allocate channel ch1 type disk;

     sql "alter session set nls_date_format=''YYYY-MM-DD HH24:MI:SS''";
     set until logseq 2 thread 1;
     restore database;
     switch datafile all;
     recover database;} 

HTH.

--
Ravi
Received on Thu Jan 19 2006 - 14:45:57 CST

Original text of this message

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