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

Thread: How to clone a 10g DATABASE

  1. #1
    Join Date
    Mar 2010
    Posts
    35

    Post How to clone a 10g DATABASE

    Dear DBA Brother,

    Give some Idea to clone a small database.
    Please give me step by step process before and till make the database online !

  2. #2
    Join Date
    May 2002
    Posts
    2,645
    RMAN

    duplicate database

  3. #3
    Join Date
    Nov 2000
    Location
    Pittsburgh, PA
    Posts
    4,166
    If you want more detail, then here is the rman command:

    Code:
    RUN {
      ALLOCATE CHANNEL C1 DEVICE TYPE 
        DISK format '/oracle/rman/idm/bck_20100303';
      RESTORE DATABASE;
      RECOVER DATABASE;
    }
    Of course you need to make sure that you have your environment setup, a pfile or spfille, a good backup, if you are changing directory names when you clone then you can specify the following in your pfile/spfile:

    db_file_name_convert=(${SOURCE_SID},${TARGET_SID})
    log_file_name_convert=(${SOURCE_SID},${TARGET_SID})

    I suppose you could always check out the documentation online at http://tahiti.oracle.com if you get desperate!

  4. #4
    Join Date
    Mar 2010
    Posts
    35

    Wink

    Thank u very much my dear brother,,

    i hope it will helpful for everyone.

    thank u very much again,,


Tags for this Thread

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