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

Thread: Is Multi-Channel restore possible?

Hybrid View

  1. #1
    Join Date
    Mar 2002
    Location
    Mesa, Arizona
    Posts
    1,204

    Is Multi-Channel restore possible?

    Is it possible to allocate multiple channels for the following rman command?

    restore archivelog from time 'sysdate-4';

    Just trying to speed things up a bit at DR. Seems like we could restore them faster if they were threaded. The backup pieces are compressed.

    -Ken
    "I do not fear computers. I fear the lack of them." Isaac Asimov
    Oracle Scirpts DBA's need

  2. #2
    Join Date
    Jul 2002
    Location
    Lake Worth, FL
    Posts
    1,492

    Talking Yes

    Yes, you can allocate multiple channels for restore:
    Code:
    Rum {
      Allocate Channel C0 Device Type Disk;
      Allocate Channel C1 Device Type Disk;
      Allocate Channel C2 Device Type Disk;
      Allocate Channel C3 Device Type Disk;
      Restore Archivelog From Time 'Sysdate-4';
    }
    "The person who says it cannot be done should not interrupt the person doing it." --Chinese Proverb

  3. #3
    Join Date
    Mar 2002
    Location
    Mesa, Arizona
    Posts
    1,204
    Wow, that worked and made an amazing impact.

    Thank you!
    "I do not fear computers. I fear the lack of them." Isaac Asimov
    Oracle Scirpts DBA's need

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