DBAsupport.com Forums - Powered by vBulletin
Page 1 of 2 12 LastLast
Results 1 to 10 of 11

Thread: RMAN backup to remote disk

  1. #1
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092

    I am trying to implement RMAN disk backups. I have two servers db1 which is the database server and backup1 which is a media server and holds my recovery catalog. db1 has three 54G mount points; /u01, /u02, /u03. backup1 has one 256G mount point; /b01.

    I want to backup to disk, but to backup1:/b01.

    My rman script is:
    Code:
    {
       allocate channel d1 type disk;
       setlimit channel d1 kbytes 2097150 maxopenfiles 32 readrate 2000;
       backup full filesperset 6
          format '/b01/rmanback/df_t%t_s%s_p%p'
          database;
       release channel d1;
    }
    I run this script on backup1, expecting the backup to go to backup1:/b01. Instead, I get an error message stating
    RMAN-10035: exception raised in RPC: ORA-19504: failed to create file '/b01/rmanback/df_t1_s1_p1'

    If I NFS mount backup1:/b01 to db1:/b01, then it works.

    Any suggestions?
    Jeff Hunter

  2. #2
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    just wondering, is UID in both servers the same?

  3. #3
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Yes, I am user "oracle" on both machines.
    Jeff Hunter

  4. #4
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    I mean uid, the number

  5. #5
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Sorry, yes, same UID.
    Jeff Hunter

  6. #6
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    hi
    Is group id same too :-?

  7. #7
    Join Date
    Jan 2002
    Location
    Netherlands
    Posts
    1,587
    That reminds me of my prev remote backup using rman Q which I couldn't resolve...

    http://www.dbasupport.com/forums/sho...threadid=25361

    Any inputs will help.

    Cheers
    Tarry Singh
    I'm a JOLE(JavaOracleLinuxEnthusiast)
    TarryBlogging
    --- Everything was meant to be---

  8. #8
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    but your was windows :-?

  9. #9
    Join Date
    Jan 2002
    Location
    Netherlands
    Posts
    1,587
    Yes. But why is the access denied even after mapping.
    What's wrong here?
    Tarry Singh
    I'm a JOLE(JavaOracleLinuxEnthusiast)
    TarryBlogging
    --- Everything was meant to be---

  10. #10
    Join Date
    Dec 2000
    Location
    Ljubljana, Slovenia
    Posts
    4,439
    Originally posted by Tarry
    Yes. But why is the access denied even after mapping.
    What's wrong here?
    Have you try restarting the instance after you have mapped the remote drive in NT?

    I remember I have read somewhare that Oracle on NT/2000 recognise mapped drives only if they have allready been mapped at the time when the instance starts. I can't remember if it was regarding UTL_FILE destinations on mapped drives or something else, but you could give it a shoot.
    Jurij Modic
    ASCII a stupid question, get a stupid ANSI
    24 hours in a day .... 24 beer in a case .... coincidence?

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