Encrypting RMAN backup
Encrypting RMAN backup Configuring encryption for Oracle Recovery Manager (RMAN) is always a good step in the right direction. There may be different reasons for encrypting RMAN backup. For greater security of data; Customer requirement (e.g, most companies requires encryption for any database file containing SSN, Credit Card number, date of birth, etc); or Complying with laws or regulations. Option 1: Use global security wallet to encrypt backup *configure the encryption wallet. create a directory called "Wallet" in $ORACLE_BASE/admin/$ORACLE_SID mkdir /home/oracle/app/oracle/admin/orcl/wallet *Issue this command as SYS: SQL> alter system set encryption key identified by "oracle1"; *Open the wallet: SQL> alter system open encryption wallet identified by "oracle1"; *Log in to rman to encrypt backup rman target / RMAN> configure encryption for database on; RMAN> backup database; Option 2: Configure encryption right from...