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.