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: backup failing while using rman

Re: backup failing while using rman

From: srivenu <srivenu_at_hotmail.com>
Date: 5 Sep 2002 22:59:33 -0700
Message-ID: <1a68177.0209052159.31c4e4e@posting.google.com>

Give the destination disk drive (which has free space) in the format clause.

example:

 RMAN> run {

 2> allocate channel d1 type disk format 'f:\backups\b_%u_%s_%p';
 3> backup
 4>    ( database  include current controlfile );
 5> backup  ( archivelog all  delete input );
 6>release channel d1;
 7> }

regards
Srivenu Received on Fri Sep 06 2002 - 00:59:33 CDT

Original text of this message

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