DBAsupport.com Forums - Powered by vBulletin
Results 1 to 4 of 4

Thread: RMAN Catalog

  1. #1
    Join Date
    Feb 2003
    Location
    Tehran/Iran
    Posts
    94

    RMAN Catalog

    Dear all,
    I'm trying to create a recovery catlog and I get the following error message. Do you see what is wrong with instruction: (oracle version 8.1.5)

    Recovery Manager: Release 8.1.5.0.0 - Production

    RMAN-06005: connected to target database: SOLDB (DBID=2945300576)

    RMAN> create catalog tablespace rman_ts;
    RMAN-00571: ===========================================================
    RMAN-00569: =============
    == ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-06002: command not allowed when not connected to a recovery catalog

    RMAN> exit;

    Recovery Manager complete.

    ========================================
    The Insructions I use are:
    1. Create tablespace rman_ts
    2. create user rman_dba
    3. Grant the following permissions:
    grant recovery_catalog_owner to rman_dba;
    grant connect, resource to rman_dba;

    4. Create rman catalog:
    rman target rman_dba/rman_dba msglog=catalog.log
    create catalog tablespace rman_dba;
    exit;
    and get the above error message.

    Do you anything wrong

    5. register the database for the catalog

    Regards
    Hamid

  2. #2
    Join Date
    May 2001
    Posts
    736
    From RMAN first try to connect to catalog.

    RMAN>connect catalog rman_dba/password@connect_string

    Then
    RMAN>create catalog tablespace rman_ts

    What is the result?

  3. #3
    Join Date
    Feb 2003
    Location
    Tehran/Iran
    Posts
    94
    Hi,
    Thanks
    The problem was that I registered once before. For new registration you should create e new user and register by that name.

    Regards Hamid

  4. #4
    Join Date
    Aug 2002
    Posts
    176
    Because you have already registered once just unregister it using the
    dbms_rcvcat.unregisterdatabase procedure using Values you query from db;

    You can just use
    Rman> Create catalog;

    without specifying the tablespace . It worked for me.

    I dont think you have to create another user...

    thanks
    Success Consists of Getting Up Just One More Time Than You've Fallen Down
    Be Blessed

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width