MAA Gold Backup Configuration

Configuration: Data Guard primary and standby databases sending backups and (optionally) redo to different Recovery Appliances that are not configured for Backup Anywhere Replication


MAA Gold Backup Configuration

FinanceDB and FinanceStby are the primary and standby databases respectively in a Data Guard configuration, onboarded with a pair of Recovery Appliances Montreal_ZDLRA and Vancouver_ZDLRA using a non-replicating protection policy. Configure these databases to send backups and redo to their respective Recovery Appliance using a common vpc user commonvpc. A global named credential DB_SYSDBA_USER is specified for the databases and target-specific named credential specified for each host, DB_HOST1_CRED and DB_HOST2_CRED.

EMCLI Command:

emcli configure_db_ha
          -configureBackupToRA -backup_config="GOLD" -input_file="target_list:
          /tmp/dblist"

The content of /tmp/dblist file:

target.0.target_name="FinanceDB"
target.0.target_type="oracle_database"
target.0.ra_target_name="Montreal_ZDLRA"
target.0.ra_vpc_username="commonvpc"
target.0.db_cred="DB_SYSDBA_USER"
target.0.db_host_cred="DB_HOST1_CRED"
target.1.target_name="FinanceStby"
target.1.target_type="oracle_database"
target.1.ra_target_name="Vancouver_ZDLRA"
target.1.ra_vpc_username="commonvpc"
target.1.db_cred="DB_SYSDBA_USER"
target.1.db_host_cred="DB_HOST2_CRED"