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

Thread: RMAN to disk

  1. #1
    Join Date
    Jul 2001
    Posts
    181

    RMAN to disk

    I have the script below:

    connect rcvcat rman/jifVufs@RCATSSI
    connect target internal/internal;
    run {
    allocate channel t1 type disk;
    allocate channel t2 type disk;
    backup
    format '/u01/backup/online_db_%d_%t_%s_%p'
    (database
    include current controlfile);
    release channel t1;
    }

    The result file to disk is over 2GB and I am getting errors what is the way around this!

    Will I have to backup through a pipe and gzip?

  2. #2
    Join Date
    Nov 2001
    Posts
    335
    There few ways to restrcit size of output . Here is one of them:

    allocate channel t2 type disk ;
    set limit channel t2 kbytes = 2000000;

    Find more about backupset and backup piece in rman documentation.
    One, who thinks that the other one who thinks that know and does not know, does not know either!

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