1751792 Members
5132 Online
108781 Solutions
New Discussion юеВ

RMAN Help

 
SOLVED
Go to solution
karthiknarayan
Advisor

RMAN Help

Dear Admin-

I have Oracle 9i installed on a HP-UX 11i machine,I am using RMAN to take backup, when i give
RMAN> backup database;it backups to the normal $ORACLE_BASE/dbs directory. can i change the directory to some other directory, if so how. please help


regards
karthik
In Love with Life
3 REPLIES 3
Peter Godron
Honored Contributor
Solution

Re: RMAN Help

Hi,
you should be able to change directory with an option of:

RMAN >CONFIGURE CHANNEL DEVICE TYPE DISK

probably FORMAT

spex
Honored Contributor

Re: RMAN Help

Hi karthik,

RMAN> allocate channel c1 type disk;
RMAN> backup database format '/foo';
RMAN> release channel c1;

PCS
karthiknarayan
Advisor

Re: RMAN Help

RMAN >CONFIGURE CHANNEL DEVICE TYPE DISK
In Love with Life