E Creating a Standby Database with Recovery Manager
These topics describe how to use Oracle Recovery Manager to create a standby database.
E.1 Prerequisites
Before you create a standby database with RMAN, you should be familiar with database duplication.
Because you use the DUPLICATE
command to create a standby database with RMAN, you should also familiarize yourself with the DUPLICATE
command .
Also familiarize yourself with how to create a standby database before you attempt to create a standby database with RMAN.
See Also:
-
Oracle Database Backup and Recovery User’s Guide for information about database duplication
-
Oracle Database Backup and Recovery Reference for a description of the RMAN
DUPLICATE
command
E.2 Overview of Standby Database Creation with RMAN
Read this section for information about the purpose and basic concepts involved in standby database creation with RMAN.
E.2.1 Purpose of Standby Database Creation with RMAN
You can use either manual techniques or the RMAN DUPLICATE
command to create a standby database from backups of your primary database.
You can use either manual techniques or the RMAN DUPLICATE
command to create a standby database from backups of your primary database. Creating a standby database with RMAN has the following advantages over manual techniques:
-
RMAN can create a standby database by copying the files currently in use by the primary database. No backups are required.
-
RMAN can create a standby database by restoring backups of the primary database to the standby site. Thus, the primary database is not affected during the creation of the standby database.
-
RMAN automates renaming of files, including Oracle Managed Files (OMF) and directory structures.
-
RMAN restores archived redo log files from backups and performs media recovery so that the standby and primary databases are synchronized.
E.2.2 Basic Concepts of Standby Creation with RMAN
The procedure for creating a standby database with RMAN is almost the same as for creating a duplicate database.
You need to amend the duplication procedures described in Oracle Database Backup and Recovery User's Guide to account for issues specific to a standby database.
To create a standby database with the DUPLICATE
command you must connect as target to the primary database and specify the FOR STANDBY
option. You cannot connect to a standby database and create an additional standby database. RMAN creates the standby database by restoring and mounting a control file. RMAN can use an existing backup of the primary database control file, so you do not need to create a control file backup especially for the standby database.
A standby database, unlike a duplicate database created by DUPLICATE
without the FOR
STANDBY
OPTION
, does not get a new DBID. Therefore, do not register the standby database with your recovery catalog.
E.2.2.1 Active Database and Backup-Based Duplication
When you are using RMAN to create a standby, you must choose between active and backup-based duplication.
If you specify FROM ACTIVE DATABASE
, then RMAN copies the data files directly from the primary database to the standby database. The primary database must be mounted or open.
If you not specify FROM ACTIVE DATABASE
, then RMAN performs backup-based duplication. RMAN restores backups of the primary data files to the standby database. All backups and archived redo log files needed for creating and recovering the standby database must be accessible by the server session on the standby host. RMAN restores the most recent data files unless you execute the SET UNTIL
command.
E.2.2.2 DB_UNIQUE_NAME Values in an RMAN Environment
A standby database, unlike a duplicate database created by DUPLICATE
without the FOR STANDBY
option, does not get a new DBID.
When you use RMAN in an Oracle Data Guard environment, connect it to a recovery catalog. The recovery catalog can store the metadata for all primary and standby databases in the environment. Do not explicitly register the standby database in the recovery catalog.
A database in an Oracle Data Guard environment is uniquely identified by means of the DB_UNIQUE_NAME
parameter in the initialization parameter file. The DB_UNIQUE_NAME
must be unique across all the databases with the same DBID for RMAN to work correctly in an Oracle Data Guard environment.
See Also:
Oracle Database Backup and Recovery User's Guide for a conceptual overview of RMAN operation in an Oracle Data Guard environment
E.2.2.3 Recovery of a Standby Database
By default, RMAN does not recover the standby database after creating it.
RMAN leaves the standby database mounted, but does not place the standby database in manual or managed recovery mode. RMAN disconnects and does not perform media recovery of the standby database.
For RMAN to recover the standby database after creating it, the standby control file must be usable for the recovery. The following conditions must be met:
-
The end recovery time of the standby database must be greater than or equal to the checkpoint SCN of the standby control file.
-
An archived redo log file containing the checkpoint SCN of the standby control file must be available at the standby site for recovery.
One way to ensure these conditions are met is to issue the ALTER
SYSTEM
ARCHIVE
LOG
CURRENT
statement after backing up the control file on the primary database. This statement archives the online redo log files of the primary database. Then, either back up the most recent archived redo log file with RMAN or move the archived redo log file to the standby site.
Use the DORECOVER
option of the DUPLICATE
command to specify that you want RMAN to recover the standby database. RMAN performs the following steps after creating the standby database files:
-
RMAN begins media recovery. If recovery requires archived redo log files, and if the log files are not already on disk, then RMAN attempts to restore backups.
-
RMAN recovers the standby database to the specified time, system change number (SCN), or log file sequence number, or to the latest archived redo log file generated if none of the preceding are specified.
-
RMAN leaves the standby database mounted after media recovery is complete, but does not place the standby database in manual or managed recovery mode.
E.2.2.3.1 Standby Database Redo Log Files
RMAN automatically creates the standby redo log files on the standby database.
After the log files are created, the standby database maintains and archives them according to the normal rules for log files.
If you use backup-based duplication, then the only option when naming the standby redo log files on the standby database is the file names for the log files, as specified in the standby control file. If the log file names on the standby must be different from the primary file names, then one option is to specify file names for the standby redo logs by setting LOG_FILE_NAME_CONVERT
in the standby initialization parameter file.
Note the following restrictions when specifying file names for the standby redo log files on the standby database:
-
You must use the
LOG_FILE_NAME_CONVERT
parameter to name the standby redo log files if the primary and standby databases use different naming conventions for the log files. -
You cannot use the
SET
NEWNAME
orCONFIGURE
AUXNAME
commands to rename the standby redo log files. -
You cannot use the
LOGFILE
clause of theDUPLICATE
command to specify file names for the standby redo log files. -
For the standby redo log file names on the standby database to be the same as the primary redo log file names, you must specify the
NOFILENAMECHECK
clause of theDUPLICATE
command. Otherwise, RMAN signals an error even if the standby database is created on a different host.
E.2.2.4 Password Files for the Standby Database
If you are using active database duplication, then RMAN always copies the password file to the standby host because the password file on the standby database must be an exact copy of the password file on the target database.
If you are using active database duplication, then RMAN always copies the password file to the standby host because the password file on the standby database must be an exact copy of the password file on the target database. In this case, the PASSWORD FILE
clause is not necessary. RMAN overwrites any existing password file for the auxiliary instance. With backup-based duplication you must copy the password file used on the primary to the standby, for Oracle Data Guard to ship logs.
E.3 Using the DUPLICATE Command to Create a Standby Database
The procedure for creating a standby database is basically identical to the RMAN duplication procedure.
See Oracle Database Backup and Recovery User's Guide for information about the RMAN duplication procedure.
E.3.1 Using Active Database Duplication to Create a Standby Database or Far Sync Instance
You can use active database duplication to create either a standby database or a far sync instance.
Creating a Standby Database with Active Database Duplication
DUPLICATE
command to create a standby database from files that are active in the primary database, you must specify both the FOR STANDBY
and FROM ACTIVE DATABASE
options. You can specify other options as well, such as DORECOVER
. For example:DUPLICATE TARGET DATABASE FOR STANDBY FROM ACTIVE DATABASE DORECOVER;
Creating a Far Sync Instance with Active Database Duplication
DUPLICATE
command to create a far sync instance from files that are active in the primary database. To do so, substitute FARSYNC
in place of STANDBY
on the command line (do not specify the DORECOVER
option; it is not allowed for far sync instances). For example: DUPLICATE TARGET DATABASE FOR FARSYNC FROM ACTIVE DATABASE;
Steps to Create a Standby Database or Far Sync Instance Using Active Database Duplication
The following steps create a standby database from active database files, but you could also use these steps to create a far sync instance from active database files. The steps assume that the standby host (or far sync instance), and primary database host have the same directory structure.
E.3.2 Creating a Standby Database with Backup-Based Duplication
You can use backup—based duplication to create either a standby database or a far sync instance.
Creating a Standby Database with Backup-Based Duplication
FOR STANDBY
but do not specify FROM ACTIVE DATABASE
. You can specify other options as well, such as DORECOVER
. For example:DUPLICATE TARGET DATABASE FOR STANDBY BACKUP LOCATION '+DATA/BACKUP' DORECOVER;
Creating a Far Sync Instance with Backup-Based Duplication
DUPLICATE
command. To do so, substitute FARSYNC
in place of STANDBY
on the command line (do not specify the DORECOVER
option; it is not allowed for far sync instances). For example: DUPLICATE TARGET DATABASE FOR FARSYNC BACKUP LOCATION '+DATA/BACKUP';
Steps to Create a Standby Database or Far Sync Instance from Backups:
The following steps create a standby database from backup files, but you could also use these steps to create a far sync instance from backup files. The steps assume that the standby host (or far sync instance), and primary database host have the same directory structure.