Backup and restore example with password encryption in Oracle
Backup and restore example with password encryption in Oracle
encryption in Oracle
Following are the things for running the RMAN Backup with Password Protected:
run {
allocate channel ch00 type disk;
backup format 'C:\rman\full_db_%t_%sp%p' filesperset 10 database;
release channel ch00;
allocate channel ch00 type disk;
backup format 'C:\rman\cntrl_%s_%p_%t' CURRENT CONTROLFILE;
backup format 'C:\rman\spfile_%s_%p_%t' spfile;
release channel ch00;
}
Advertisement