1.

You Want To Move Your Recovery Catalog From One Database To Another. How You Can Do It?

Answer»

Moving Recovery CATALOG to another database is simple process

  • Create a new recovery catalog in the target database. You don’t need to register any database to it
  • Use the IMPORT catalog command in RMAN after CONNECTING to the target database:
    $ rman
    RMAN> CONNECT catalog rman_new/rman@target_database
    RMAN> import catalog rman_old/rman@source_database;

The import catalog command will import the source recovery catalog contents into the target recovery catalog.

Moving Recovery catalog to another database is simple process

The import catalog command will import the source recovery catalog contents into the target recovery catalog.



Discussion

No Comment Found