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

Thread: 10g Backup With RMAN

  1. #1
    Join Date
    Aug 2002
    Posts
    40

    Arrow 10g Backup With RMAN

    I am using the following Script for backup on 10g database on Command line-

    RMAN TARGET SYSTEM/UCCNETDEVA@DEVA NOCATALOG
    configure controlfile autobackup on;

    run {allocate channel d1 type disk;
    backup
    incremental level = 0
    database format "/raid4/oracle/10g/product/dbs/img_cpy_upd.bak";
    backup archivelog all delete input format "/raid4/oracle/10g/product/dbs/img_cpy_upd.bak";}

    Error Message-

    channel d1: starting piece 1 at 12-AUG-05
    released channel: d1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on d1 channel at 08/12/2005 16:06:31
    ORA-19504: failed to create file "/raid4/oracle/10g/product/dbs/img_cpy_upd.bak"

    ORA-27040: file create error, unable to create file
    SVR4 Error: 2: No such file or directory

    How to resolve this problem???

    Secondly we have both Sun Solaris(Unix) & Window Env. On windows when I say c:> Rman....it shows me that rman is available.

    But on Unix box Rman is not recognised.???
    Can someone tell me why??

    I would greatly appreciate the help.

    Thanks

  2. #2
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    Quote Originally Posted by bonny
    I am using the following Script for backup on 10g database on Command line-

    RMAN TARGET SYSTEM/UCCNETDEVA@DEVA NOCATALOG
    configure controlfile autobackup on;

    run {allocate channel d1 type disk;
    backup
    incremental level = 0
    database format "/raid4/oracle/10g/product/dbs/img_cpy_upd.bak";
    backup archivelog all delete input format "/raid4/oracle/10g/product/dbs/img_cpy_upd.bak";}

    Error Message-

    channel d1: starting piece 1 at 12-AUG-05
    released channel: d1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on d1 channel at 08/12/2005 16:06:31
    ORA-19504: failed to create file "/raid4/oracle/10g/product/dbs/img_cpy_upd.bak"

    ORA-27040: file create error, unable to create file
    SVR4 Error: 2: No such file or directory

    How to resolve this problem???

    Secondly we have both Sun Solaris(Unix) & Window Env. On windows when I say c:> Rman....it shows me that rman is available.

    But on Unix box Rman is not recognised.???
    Can someone tell me why??

    I would greatly appreciate the help.

    Thanks

    1. common sense
    2. do you know what are environment variables in any operating system?

  3. #3
    Join Date
    May 2005
    Location
    Boracay
    Posts
    681
    hi,

    Unix is case sensitive...u sould type "rman" and not Rman.
    The rman executable must be in the $PATH env variable.
    Your error seems relate to file permission error or maybe the
    directory is not yet created. Go to that dir and create a test file
    to check if it is writable.
    Last edited by yxez; 08-15-2005 at 04:36 AM.

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