RMAN Auxiliary Channel

What is auxiliary channel in RMAN? When do you need this?

Questions by shanthiavari

Showing Answers 1 - 3 of 3 Answers

naveen_rc

  • Aug 6th, 2009
 

An auxiliary channel is a link to auxiliary instance. If you do not have automatic channels configured, then before issuing the DUPLICATE command, manually allocate at least one auxiliary channel within the same RUN command.


When a Duplicate Database created or tablespace point in time recovery is performed Auxiliary database is used. this database can either on the same host or a different host.


RUN

{
 ALLOCATE AUXILIARY CHANNEL ch1 DEVICE TYPE sbt;
 ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE DISK;
 ALLOCATE AUXILIARY CHANNEL aux2 DEVICE TYPE DISK;
 ALLOCATE AUXILIARY CHANNEL aux3 DEVICE TYPE DISK;
  .
  .
  .
  DUPLICATE TARGET DATABASE TO dupdb;
}

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions