9.7.5.4 Update the Test Master Database
You have two options for refreshing the test master database:
-
Allow Oracle Data Guard to refresh the test master database
If the Oracle Data Guard replica has been used as a test master database for only a short period of time and you have all the redo generated during this time in archive logs on disk at the source database, then you can enable redo shipping and start redo apply. The test master database will use regular Oracle Data Guard protocols to retrieve archive logs and apply the logs until it is caught up with the primary database. Once the Oracle Data Guard replica is as current as you need it to be, disable redo shipping, stop redo apply and repeat the test master and snapshot creation cycle described in Setting Up the Test Master and Creating Snapshots.
This option has the benefit of being able to stop redo apply at some intermediate point rather than bringing the test master database totally current.
To let Oracle Data Guard refresh the standby, enable log shipping to the standby and redo apply on the standby:
DGMGRL> edit database TESTMASTER set property logshipping=ON; Property "logshipping" updated DGMGRL> edit database TESTMASTER set state=apply-on; Succeeded -
Use RMAN
RECOVER...FROM SERVICEto roll forward the test master databaseIf the Oracle Data Guard replica has been used as a test master database for a long period of time or if you no longer have the redo available on disk to enable Oracle Data Guard to automatically refresh the test master database, use RMAN to perform live incremental apply over the network.
A major advantage to using this method is that no additional disk space is required. RMAN will bring changed blocks to the standby from the primary over the network and apply them directly. Also RMAN greatly simplifies the process by determining which blocks need to be retrieved based on the SCN of the data files on the test master. With this method you cannot recover to an intermediate point in time; the refresh will bring the test master database current with the primary. For more information on this method refer to Performing RMAN Recovery: Advanced Scenarios in Oracle AI Database Backup and Recovery User’s Guide.
To refresh the test master database using RMAN Network Incrementals:
Parent topic: Refreshing the (Read-only) Test Master Database