Oracle Backup/Export Encryption
Just as seamlessly as HyperBac for Oracle integrates with Oracle’s backup operations, the solution is also able to encrypt these backups using certificate based AES encryption.
This capability is delivered at no additional overhead or cost.
The following is a simple backup example without compression or encryption.
RUN {
ALLOCATE CHANNEL d1 DEVICE TYPE disk
FORMAT = '/u01/rpprod1/backup/%U';
BACKUP DATAFILE '/u01/oracle/oradata/rpprod1/tools01.dbf';
}
To introduce HyperBac for Oracle and turn on encryption, it is simply a matter of changing the extension of the output file. The following example is with compression and encryption.
RUN {
ALLOCATE CHANNEL d1 DEVICE TYPE disk
FORMAT = '/u01/rpprod1/backup/%U.HBE';
BACKUP DATAFILE '/u01/oracle/oradata/rpprod1/tools01.dbf';
}
|