| Oracle9i Recovery Manager Reference Release 1 (9.0.1) Part Number A90136-02 |
|
RMAN Commands , 44 of 60
To copy a control file to the locations specified in the CONTROL_FILES initialization parameter of the target database.
After restoring the control file, you can use the REPLICATE CONTROLFILE statement to prepare the database for mounting. This operation is equivalent to executing multiple COPY CONTROLFILE statements.
REPLICATE CONTROLFILE only within the braces of a RUN command.
This example restores a control file to a temporary location and then replicates it manually:
STARTUP NOMOUNT; RUN { SET UNTIL TIME 'Jun 18 2000 16:32:36'; # restore a backup controlfile to a temporary location. RESTORE CONTROLFILE TO '/tmp/cf.tmp'; REPLICATE CONTROLFILE FROM '/tmp/cf.tmp'; STARTUP FORCE MOUNT; }
|
|
![]() Copyright © 1996-2001, Oracle Corporation. All Rights Reserved. |
|