Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: backup failing while using rman
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