I want to change to another drive due to lack of disk space.
How can I change the default location of backup files used by oracle to another drive using RMAN?
By default it's in the folder ORACLE_HOME
from variables.
edit:
Found some links with problems like mine here, but they didn't help.
My script looks like this one:
run {
allocate channel d1 type disk;
allocate channel d2 type disk;
backup
format 'd:/backups/%U.bkp'
database plus archivelog;
release channel d1;
release channel d2;
}
Edit : By running the above scripts the backup will never finish