Unprotecting Databases and Cleaning up
This task shows you how to complete the process of un-registering a database and deleting its backup files from the Recovery Appliance when the database no longer needs recovery protection. The Recovery Appliance uses the delta backup pieces to perform most of its recovery work, but achieves zero data loss by registering as a target for the real-time Redo logs.
When a database no longer needs recovery protection, the database and the Recovery Appliance need appropriate configuration changes. These changes:
- Stop the database from sending its Redo logs to the Recovery Appliance.
- Stop the database from generating backups.
- Remove old backup files for the database from the Recovery Appliance, a multiple-day process.
- Informs the Recovery Appliance to not save future backups from the database.
RMAN supports sending the archive logs to multiple destinations. log_archive_dest_1
is backup to the local disk drive, while log_archive_dest_2
through log_archive_dest_30
can be configured for other destinations, such as a physical standby server or the Recovery Appliance. RMAN views the Recovery Appliance as another Tape Backup device.
Disabling the Real-Time Redo Transport
This task configures the database to stop transporting the redo logs to the Recovery Appliance.
- Log into the Enterprise Manager as
sysman
or equivalent target level access. - Navigate to the database that no longer needs protection. In our example, its name begins with "cont001_".
- In the Backup Settings area and the Device tab, select the Recovery Appliance associated with the database.
- Uncheck the checkbox that says Enable Real-Time Redo Transport.
Figure 5-4 Enterprise Manager and turning off recovery protection

Description of "Figure 5-4 Enterprise Manager and turning off recovery protection"
Disabling the Backups
This task configures the database to stop sending the delta backup pieces to the Recovery Appliance, when the database no longer needs recovery protection.
This step jumps between RMAN and Enterprise Manager in order to highlight what happens to the configuration.
If you return to RMAN and issue the same command.
RMAN> show all;
The output lists no longer contains the entry for the SBT_TAPE
channel device that was used for theRecovery Appliance.
Un-registering the Database from the Recovery Appliance
When a database no longer needs recovery protection, you issue a command to unregister it from the Recovery Appliance that also deletes its old backup files. The deletion of backup files takes a significant period of time to complete, which is why it should be run in the background (wait = false
).
The removal of backup data from the Recovery Appliance in the background can take multiple days.
Meanwhile, yourDBname
database is no longer allowed to backup to the Recovery Appliance.