Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Rman backup in a 3 node RAC

user4339084Sep 28 2015 — edited Sep 30 2015

Hello,

i usually make entire database backup and archivelog, (when necessary) ,  of  my 3 node RAC thru 8 sbt channels and connected to local node1 only , and connected at the same time to Rman catalog.

In this node1  i have fiber channel connected to legato storage network. I have another second fiber in node3  but i don´t use it for scheduled backup.

This is my script for backup:

connect target rman/rman@node1;

connect catalog rman/rman@RMAN;

resync catalog;

run {

  allocate channel t1 type 'SBT_TAPE';

  allocate channel t2 type 'SBT_TAPE';

  allocate channel t3 type 'SBT_TAPE';

  allocate channel t4 type 'SBT_TAPE';

  allocate channel t5 type 'SBT_TAPE';

  allocate channel t6 type 'SBT_TAPE';

  allocate channel t7 type 'SBT_TAPE';

  allocate channel t8 type 'SBT_TAPE';

  send 'NSR_ENV=(NSR_SERVER=legato,NSR_CLIENT=node1,NSR_DATA_VOLUME_POOL=oracle)';

  backup full format='bck_online_%d_%u_%s'

  filesperset=1

  (database include current controlfile);

  release channel t1;

  release channel t2;

  release channel t3;

  release channel t4;

  release channel t5;

  release channel t6;

  release channel t7;

  release channel t8;

}

My question:

How i could take advantage from the 3 node RAC and from the second fiber channel legato storage network i actually don´t use.?

Do you see any to change ?

thanks and regards.

Fran

This post has been answered by Hemant K Chitale on Sep 30 2015
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Oct 28 2015
Added on Sep 28 2015
4 comments
1,022 views