Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

RMAN backup to network share and local at the same time ?

gregory_leskoJan 8 2014 — edited Jan 10 2014

Hi all,

is it possible to force rman to backup database into two different locations ? one location would be network drive, another local directory.

I was trying to do it with this script:

run

{

allocate channel c1 type disk format '\\10.236.196.247\BACKUP\%U' maxpiecesize 2g;

allocate channel c2 type disk format 'F:\data\flashback\db_recovery_area/%U' MAXPIECESIZE 2g;

backup database;

backup current controlfile;

release channel c1;

release channel c2;

}

what I get is my backup is split between these two locations... unable to recover database from one of them.

Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 7 2014
Added on Jan 8 2014
4 comments
3,101 views