Oracle8
i, which was the database for Internet computing, built upon the Recovery Manager capabilities introduced with Oracle8.
In addition to the enhancements made to Oracle 8, Oracle8
i Recovery Manager functionality included:
- Proxy copy
- Disk affinity
- LIST command enhancements
- Recovery Catalog cross check
- Multiplexed backup sets
- Control file character set specification
- STARTUP and SHUTDOWN commands
- Clone command
- Automatic catalog maintenance
The following table outlines the backup and recovery features of RMAN:
1) Proxy copy and 2) disk affinity still exist in Oracle Recovery Manager (RMAN) version 13c.
- Proxy copy is a feature that allows you to create a backup copy of a data file or archived log on a different disk or disk array than the original file. This can be useful for improving performance or to protect against disk failure.
- Disk affinity is a feature that allows you to control which disks RMAN uses to store backup sets and archived logs. This can be useful for improving performance or to ensure that backups are stored on specific disks.
To use proxy copy, you can use the `PROXY` clause in the `BACKUP` command. For example, the following command would create a proxy copy of the data file `datafile1.dbf` on the disk `/disk2`:
BACKUP DATABASE PLUS ARCHIVELOG;
PROXY DEVICE TYPE DISK '/disk2';
To use disk affinity, you can use the `DISK` clause in the `CONFIGURE` command. For example, the following command would configure RMAN to use the disks `/disk1` and `/disk2` to store backup sets:
CONFIGURE CHANNEL DEVICE TYPE DISK '/disk1';
CHANNEL DEVICE TYPE DISK '/disk2';
You can then use the `DISK` clause in the `BACKUP` or `RECOVER` commands to specify which disks to use for a particular backup or recovery operation. For example, the following command would create a backup of the database on the disks `/disk1` and `/disk2`:
BACKUP DATABASE PLUS ARCHIVELOG;
DISK '/disk1';
DISK '/disk2';
Proxy copy and disk affinity are powerful features that can help you to improve the performance and reliability of your RMAN backups and recoveries.