Skip Headers

Oracle9i Recovery Manager Reference
Release 2 (9.2)

Part Number A96565-01
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback

Go to previous page Go to beginning of chapter Go to next page

RMAN Commands , 40 of 59


REGISTER

Syntax

Text description of register.gif follows
Text description of the illustration register.gif


Purpose

To register the target database in the recovery catalog so that RMAN can access it. RMAN obtains all information it needs to register the target database from the target database itself.


Note:

If you perform a RESETLOGS operation on a database and later register it in the recovery catalog, the catalog records the DB_NAME for the old incarnations as UNKNOWN because the old incarnations were not previously registered. You should not try to remove these records.


See Also:

Oracle9i Recovery Manager User's Guide, and "CREATE CATALOG"

Restrictions and Usage Notes

Example

Registering a Database: Example

The following shell script registers a new target database, catalogs an existing datafile copy, then opens the database for use:

rman TARGET / CATALOG rman/rman@catdb <<EOF
STARTUP FORCE MOUNT;
REGISTER DATABASE;
CATALOG DATAFILECOPY '?/oradata/system01.cpy';
ALTER DATABASE OPEN;
EXIT;
EOF

Go to previous page Go to beginning of chapter Go to next page
Oracle
Copyright © 1996, 2002 Oracle Corporation.

All Rights Reserved.
Go To Documentation Library
Home
Go To Product List
Book List
Go To Table Of Contents
Contents
Go To Index
Index

Master Index

Feedback