RMAN and EMC Networker

We have just purchased EMC Networker to work with RMAN. We have about 25 databases, where we have configured a recovery catalog on a separate server. We are planning to run RMAN remotelly from this server, rather then locally for each of the 25 databases. I have 2 questions:
1. Does it makes sense to do that, to run RMAN from the remote location on the server where recovery catalog is located?
2. My understanding is that once RMAN commands are issued, Oracle starts a backup where it reads the appropriate database file, creates backup set and passes it to Networker Oracle module. Where is this backup set created? Can it be created in the Flash Recovery Area (so backup to disk first) and then backup this area to Networker? Does it make sense to set up FRA if we are using Networker?
Thank you!

1) There are version dependencies between the RMAN components, but apart from this you can run the executable from everywhere. This is often done from a centralized location.
2) It's a common strategy to first backup to disk (and FRA is the recommened location) and then to backup the FRA to tape via RMAN. That means performance advantages and your first backup stage is independent of 3rd party functionality. But you have a second storage destination,which makes your backup/recovery strategy more reliable. Of course you also could backup directly to tape, if you don't have enough disk space (and you don't want to invest in it).
Werner

Similar Messages

  • Restore to a different node with RMAN and EMC Networker

    Please, really need help :)
    I took hotbackup using RMAN catalog which went to tape. Here is the script for that:
    connect target sys/****@PROD;*
    connect rcvcat rman/***@catalog;*
    *run {*
    allocate channel t1 type 'SBT_TAPE';
    send 'NSR_ENV=(NSR_SERVER="**",NSR_DATA_VOLUME_POOL=Oracle)';*
    *backup database plus archivelog;*
    *release channel t1;*
    My settings include control file autobackup as follows:
    *RMAN> show all;*
    *RMAN configuration parameters are:*
    *CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 10 DAYS;*
    *CONFIGURE BACKUP OPTIMIZATION OFF; # default*
    *CONFIGURE DEFAULT DEVICE TYPE TO DISK;*
    *CONFIGURE CONTROLFILE AUTOBACKUP ON;*
    *CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE 'SBT_TAPE' TO '/NMO_%F/';*
    *CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default*
    *CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default*
    *CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default*
    *CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default*
    *CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/data/backups/PROD/ora_df%t_s%s_s%p';*
    *CONFIGURE MAXSETSIZE TO UNLIMITED; # default*
    *CONFIGURE ENCRYPTION FOR DATABASE OFF; # default*
    *CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default*
    *CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default*
    *CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/data/backups/PROD/hotbkp/snapcf_PROD.f';*
    I am trying to restore this backup that is on tape (EMC Networker) to a different node. I can do this outside of Networker without any problems. However, when I try to get the backup from tape I have this issue:
    1. initPROD.ora is created and modified accordingly on a new server
    2. Export sid, startup nomount on new server
    export ORACLE_SID=PROD (on this new server)
    *rman target /*
    *startup nomount*
    3. I then run the following and get this error:
    *RMAN> run {*
    *2> allocate channel t1 type 'SBT_TAPE'*
    *3> send 'NSR_ENV=(NSR_SERVER="***",NSR_CLIENT="********")';*
    *4> restore controlfile from autobackup;*
    *5> sql 'alter database mount';*
    *6> sql 'alter database rename file "/data/dbf/PROD/redo01.log" to "/data/scratch/dbf/PROD/redo01.log"';*
    *7> sql 'alter database rename file "/data/dbf/PROD/redo02.log to "/data/scratch/dbf/PROD/redo02.log"';*
    *8> sql 'alter database rename file "/data/dbf/PROD/redo03.log to "/data/scratch/dbf/PROD/redo03.log"';*
    *9> set until sequence 22; (I get this from archive logs)*
    *10> set newname for datafile 1 to '/data/scratch/dbf/PROD/system01.dbf';*
    *11> set newname for datafile 2 to '/data/scratch/dbf/PROD/undotbs01.dbf';*
    *12> set newname for datafile 3 to '/data/scratch/dbf/PROD/sysaux01.dbf';*
    *13> set newname for datafile 4 to '/data/scratch/dbf/PROD/users01.dbf';*
    *14> restore database;*
    *15> switch datafile all;*
    *16> recover database;*
    *17> alter database open resetlogs;*
    *18> }*
    *allocated channel: t1*
    *channel t1: sid=149 devtype=SBT_TAPE*
    *channel t1: NMO v4.5.0.0*
    *Starting restore at 27-FEB-09*
    *released channel: t1*
    *RMAN-00571: ===========================================================*
    *RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============*
    *RMAN-00571: ===========================================================*
    *RMAN-03002: failure of restore command at 02/27/2009 22:10:43*
    *RMAN-06495: must explicitly specify DBID with SET DBID command*
    I cannot seem to pass this error. This error indicates that the db has to be either mounted or DBID set before the restore of teh controlfile. Mounting db before the restore of the controlfile does not work. Setting db id 1) does not make sense because if the primary db is down then I cannot get it, right? My primary is up now, so I was able to get db id, but setting it made the restore hang with the following:
    *RMAN> run {*
    *connect target*
    *set dbid=466048808*
    *2> allocate channel t1 type 'SBT_TAPE'*
    *3> send 'NSR_ENV=(NSR_SERVER="***",NSR_CLIENT="********")';*
    *4> restore controlfile from autobackup;*
    *5> sql 'alter database mount';*
    *6> sql 'alter database rename file "/data/dbf/PROD/redo01.log" to "/data/scratch/dbf/PROD/redo01.log"';*
    *7> sql 'alter database rename file "/data/dbf/PROD/redo02.log to "/data/scratch/dbf/PROD/redo02.log"';*
    *8> sql 'alter database rename file "/data/dbf/PROD/redo03.log to "/data/scratch/dbf/PROD/redo03.log"';*
    *9> set until sequence 22; (I get this from archive logs)*
    *10> set newname for datafile 1 to '/data/scratch/dbf/PROD/system01.dbf';*
    *11> set newname for datafile 2 to '/data/scratch/dbf/PROD/undotbs01.dbf';*
    *12> set newname for datafile 3 to '/data/scratch/dbf/PROD/sysaux01.dbf';*
    *13> set newname for datafile 4 to '/data/scratch/dbf/PROD/users01.dbf';*
    *14> restore database;*
    *15> switch datafile all;*
    *16> recover database;*
    *17> alter database open resetlogs;*
    *18> }*
    *connected to target database: PROD (not mounted)*
    *executing command: SET DBID*
    *using target database control file instead of recovery catalog*
    *allocated channel: t1*
    *channel t1: sid=152 devtype=SBT_TAPE*
    *channel t1: NMO v4.5.0.0*
    *Starting restore at 27-FEB-09*
    *channel t1: looking for autobackup on day: 20090227*
    *channel t1: looking for autobackup on day: 20090226*
    *channel t1: looking for autobackup on day: 20090225*
    It looks like it cannot find the autbackup of controlfile? But when I list backup while connected to the target db and rman catalog, I see that autobackup is included in every hot backup that we do:
    *BS Key Type LV Size Device Type Elapsed Time Completion Time*
    *4639 Full 7.00M SBT_TAPE 00:00:04 27-FEB-09*
    *BP Key: 4641 Status: AVAILABLE Compressed: NO Tag: TAG20090227T150141*
    *Handle: /NMO_c-466048808-20090227-01/ Media:*
    *Control File Included: Ckp SCN: 23352682865 Ckp time: 27-FEB-09*
    *SPFILE Included: Modification time: 26-FEB-09*
    I am stuck What I am doing wrong? Thank you!
    Edited by: rysalka on Feb 28, 2009 8:35 AM

    Do a list command to see if the controlfile backup is on tape.
    RMAN> list backup of controlfile;
    I suggest you to read the manual of EMC Networker or call EMC on how to restore the database to another node. I am using Veritas Netbackup, it may be similar to EMC Networke for your reference. There are a few things that need to be followed when you restore database to another node:
    1) set DB_ID, which you have done
    2) set NB_CLIENT (in your case NSR_CLIENT) to the primary node from where backup was taken
    3) configure the backup server to allow redirect restore between the two nodes.
    Hope this helps.

  • Rman and legato networker

    I have an installation of oracle 8i on AIX, and legato networker 6.1.1.
    I need to link the legato networker 6.1.1 to oracle so that I can trigger rman backups.
    The liblsm.a provided in the installition cd of oracle is for version 5.5 as documented in the installation notes for AIX. What must I do for legato 6.1.1 ?
    Thanks for your help

    A "restored" controlfile can be from either of
    a. An RMAN Backup (ie a backup created by a BACKUP CONTROLFILE command in RMAN or CONTROLFILE AUTOBACKUP)
    b. A manual / scripted Binary Backup (one created with the SQL command "BACKUP CONTROLFILE TO filename")
    c. A controlfile recreated from a script (eg where the script was generated by the SQL command "BACKUP CONTROLFILE TO TRACE ")
    In the first two cases, the restored controlfile also contains information about RMAN Backups made as of upto the point of the controlfile backup . Therefore, even in the absence of an RMAN Catalog, such a controlfile can be used to issue RESTORE DATABASE commands -- it can only restore from backupsets that it knows -- backupsets that were "registered" into the controlfile before the controlfile backup was made.
    In the third case, since the controlfile is recreated afresh, it has NO "knowledge" of database backups (backupsets). A simple "RESTORE DATABASE" cannot be used. Either backupsets must be re-registered into this controlfile with the "CATALOG" command OR an RMAN Catalog must be used (as the Catalog has information about Database Backups and the names of the backupsets containing these backups).
    Hemant K Chitale
    http://hemantoracledba.blogspot.com

  • RMAN and EMC Timefinder

    We are going to use Timefinder to backup our databases. We plan to split the BCVs and then mount them on another host to do the backup. I do not want to start a database on this new host. We will be using OMNIBACK as the tape management system. Is there a way that I can get these backups registered with RMAN?

    I guess you should configure this instance in rman as if it was a cold backup, what I'd do is to atach the bcv's in a second host and in this secundary host send the backup to tape with rman, and in the second host you'd do he backup as a cold backup. I'm using networker for the backup of bcv's but without rman, I do the backup only as closed files.
    Hope this helps.
    Cynthia Pulido
    Monterrey, Mexico

  • RMAN / EMC Networker 7.6 (NMDA): Rman output logfile specification??

    DBA Colleagues,
    I have a quick question concerning leveraging the NSR_RMAN_ARGUMENTS parameter with the new version of EMC Networker & NMDA. In past EMC Networker versions, when the EMC Scheduler was used to initiate the backup jobs, there was a shell script called nsrnmo that could leverage unix variables and os commands to construct the path/filename for all rman output files such as:
    NSRMMO defintion(/usr/bin/nsrnmo--shell script):
    NSR_RMAN_ARGUMENTS="msglog '/nsr/applogs/${ORACLE_SID}_msglog_`date +%Y-%m-%d_%H:%M:%S`.log' append"
    NSRNMO output which would produce an rman output logfile of(this was able to used OS vars and commands):
    /nsr/applogs/MYDB_msglog_2012-06-04_11:43:02.log
    Now in the latest version of EMC Networker, there are config files that are not shell scripts, but still use the same definition:
    NMDA config file (/nsr/apps/config/MYDB.cfg)
    ORACLE_SID=MYDB
    NSR_RMAN_ARGUMENTS="msglog '/nsr/applogs/${ORACLE_SID}_msglog_`date +%Y-%m-%d_%H:%M:%S`.log' append"
    MNDA Output which produce rman output logifle(no translation of the varaibles...no MYDB or date format returned in logfile name):
    /nsr/applogs/${ORACLE_SID}_msglog_`date +%Y-%m-%d_%H:%M:%S`.log
    Has anyone converted from Networker 7.5(NMO) or ealier to Networker 7.6(NMDA)..and what specification was useful for rman output logfile naming??
    Kind Regards,
    . . . Todd . . .

    Hi Todd,
    I implemented the nmda module after using the nmo module for some of my databases.
    Sadly enough the old nmo had much more options to push environment settings compared to the new nmda.
    Also the translation of variables seems to be lost as well.
    The only way for me was to create an nmda file per database having hard coded values in it.
    I use cron to rotate the log to a logfile with a date format just before midnight.
    Regards,
    Tycho

  • Oracle Online Backup through EMC Networker - RMAN Script

    Hi,
    For taking online oracle backup through EMC Networker, we configure the RMAN script to connect to the target database, create the media channels, backup format etc. The password for the sys or rman user entered in the RMAN script is in clear-text format.
    Due to security reasons, I don't want the passwords to be entered in the RMAN script. Is there any option for configuring RMAN script without mentioning the username/password to connect to the target database ?
    Thanks & Regards,
    Shreejesh.

    When you have to connect remotely to RMAN, you cannot hide the password, you can only define very restricted access for the script itself. Remote OS authentication will not work, because the target db user needs SYSDBA privilege, which cannot be granted to an externally identified user.
    Werner

  • EMC Networker, where to get NMO to install?

    Hello all,
    I've installed Oracle Enterprise Edition 11Gr2.
    I can see that networker has been installed on the box, and am trying to follow the book (for 10G, but figure it is close) to install and configure NMO to get RMAN to work.
    This is a RHEL5 box. I see in the instrucitons, it says to insert and mount a NMO CD-ROM....
    I'm confused..where do I get this? Does this come from EMC Networker.....or is this (or the files) something I can get from Oracle?
    I am clear about once it is installed, to do the linking: ln -s /usr/lib/libnwora.so /$ORACLE_HOME/lib/libobk.so
    But, I'm not sure where to find the networker lib to install to link to...
    From nsrwatch I see I have Version: NetWorker 7.1.Build.230 Data Backup Utility
    Any suggestions?
    Thank you,
    cayenne

    Hi cayenne,
    I'm confused..where do I get this? You need an account on EMC power link to download the nmo.
    But, I'm not sure where to find the networker lib to install to link to...Follow the link.
    https://powerlink.emc.com/nsepn/webapps/btg548664833igtcuup4826/km/appmanager/km/secureDesktop?_nfpb=true&_pageLabel=servicesDownloadsTemplatePg&internalId=0b01406680192a33&_irrt=true
    Take the "NetWorker Module for Oracle 5.0" which matches you platform.
    (You will need a license installed in backup system before it works.)
    Regards,
    Tycho

  • RMAN and FRA

    Hello --
    I was wondering if anyone can clarify this for me. We have several databases on various hosts and then RMAN set up on a different server. So all the backups will be done remotelly. We are using EMC Networker for tape backups. My understanding is that Oracle recommends backing up to disk (i.e. Flash Recovery Area) and then Networker will pick it up from there. My question is - do we set up FRA for each of the databases (say if they all are on different hosts, then that is where we set them up) or do we set up one sort of "central" FRA on the server where RMAN is located?
    thank you!

    You can do it either way. A FRA can be shared amongst multiple databases assuming the restrictions specified in "Sharing a Flash Recovery Area Among Multiple Databases" are met. However, you may want to take into consider any potential 10gR2 "database backup" to nfs mounted dir results in ORA-27054 NFS error involved if you are going to share a common directory.

  • Incrementally updated backup and EMC NMDA

    Hello Everyone,
    I'm kind of a newbie in setting up networker module for oracle, to backup database to tape. We use the oracle's suggested backup strategy to backup DB to Disk first using the incrementally updated backups with recovery set to 3 days (RECOVER COPY OF DATABASE WITH TAG ... UNTIL TIME 'SYSDATE-3') , which helps us to recover DB to any point in time using the backup files in disks vs. going to tape. After backup to disk, we backup recovery area to tape nightly. However, we do want to maintain backup Retention Policy of 1 month. Couple of questions,
    1. If i set RP to recovery window of 31 days in RMAN, then backups don't obsolete at all. this forces me to set RP in networker and they don't recommend setting RP in both RMAN and networker. how is this done generally to obsolete backups from tape as well as rman (catalog in CF) with above strategy. perhaps in this case i should set RP in netwoker and set RP in RMAN to none and rely on crosscheck and delete expired commands to sync with RNAM catalog.
    2. Wondering if nightly backup of recovery area to tape is going to take incremental from previous day and NOT full backup. The reason i ask is, i do not want the tape to do full backup of FRA every day cause full backup datafiles change once in 3 days based on the until time set. is there an option do set in networker to do incremental only or that's the default.
    Thanks in Advance!
    11gR2, 4 Node RAC, Linux, NMDA 1.1, Networker 7.6 sp1

    Loic wrote:
    You do a full backup of the FRA on tape ?No, I do a full backup of the database on tape. Using RMAN together with Veritas NetBackup.
    I mean if you use incremental updated backup it'll not work on tape... Because the level 0 backup that will be updated with the backup of the day after will be on tape and will not be updated.The incrementally updated backup is in the FRA only, on disk (both the image copy and the following backup sets that are used for recovery of the image copy). Never gets written to tape or updated on tape.
    Why don't you use then normal incremental backup ? That will have no problem with the tape backup even if level0, or level1,2 becomes reclaimable... ?I think I do :-)
    Maybe:
    To keep that you can put the redundancy to 2 out of 1 copy. Like this even with one copy on disk and tape it'll say keep the 2 copies.
    CONFIGURE RETENTION POLICY TO REDUNDANCY 2;I'll think about that.

  • Oracle RMAN and SAP Databases

    Hi all,
    Am mainly an Oracle DBA and had just recently return to supporting SAP customers after a 4 year absence of supporting non-SAP customers.
    Anyway, I have some question on using Oracle RMAN with SAP databases. Backup softwares are Netbackup and Data Protector.
    I managed to get the backup working, that is, there is no issues, Oracle RMAN backup using SAP's brarchive and brbackup works alright. My question is about using an Oracle RMAN catalog. I've read thru several SAP documentation and cannot find one where I can use a RMAN catalog.
    Reading from
    http://help.sap.com/saphelp_nw04/helpdata/en/d1/43d7cab9a04a409cc46876e36762c2/content.htm
    Does that mean I cannot use a RMAN catalog? Had anyone managed to use a RMAN catalog to do the RMAN backup?
    *Another question I have is, do I need Netbackup and Data Protector if I want to run RMAN backup to disk via brarchive and brbackup? Does backint requires a SBT library to use RMAN? What I mean is, I want to use RMAN but doing backup to disk instead of to tape which means I don't need the tape library installed, will backint know that this is the case and will not look for the tape library?
    Any advise or feedback on this will be very much appreciated. Thanks in advance.
    Extracts from http://help.sap.com/saphelp_nw04/helpdata/en/d1/43d7cab9a04a409cc46876e36762c2/content.htm are as below:
    The Oracle Recovery Manager (RMAN) is an Oracle backup program. You can use it as a command line interface (CLI) or as a graphical user interface (GUI) in the Oracle Enterprise Manager (OEM). We support RMAN with the SAP backup tools BRBACKUP and BRARCHIVE.
    RMAN uses the System Backup to Tape (SBT) interface to back up to tape devices. We implement SBT using the SAP backup library. External backup tools can implement this interface as a dynamic link library (DLL).
    Integration
    By integrating RMAN into BRBACKUP, you can add security and flexibility to important functions in existing backup strategies and tools:
    · The recovery catalog is not used. The backup information is stored in the control file. After the backup, the control file is also backed up. In a restore, the control file is restored first, followed by the data files.
    · The integration of RMAN into BRBACKUP also guarantees integration into the SAP Structure linkComputing Center Management System (CCMS).
    · BRBACKUP tape management functions as previously (that is, as when using the SAP backup library).
    · You can still use the BACKINT interface with external tools.
    · All previous SAP backup strategies are supported while using RMAN. Nevertheless, RMAN is not supported for standby database backups and split-mirror backups.
    · The following components are delivered with the standard Oracle8 installation:
    ¡ RMAN with the Oracle SBT interface
    ¡ Backup library and backup tool Networker from Legato
    ¡ Legatou2019s BACKINT interface implementation (as of Oracle 8.0.5)
    The SAP installation also delivers the SAP backup library with BRBACKUP and BRARCHIVE.
    Edited by: newbie01.sap on Jun 11, 2010 10:50 AM

    Hi,
    This question has been answered by Stefan Koehler. Not sure why the thread is not updated by his response. I am hoping to give him the max points actually.
    It was a very good response which is as below:
    Subject: Re: Oracle RMAN and SAP Databases
    Message: Hello,
    > Does that mean I cannot use a RMAN catalog? Had anyone managed to use a RMAN catalog to do the RMAN backup?
    Correct - if you are using the BR*Tools and RMAN you are not able to use a RMAN catalog with it.
    You can do manual catalog syncs, but the BR*Tools are not supporting a catalog database.
    >Does backint requires a SBT library to use RMAN?
    Check this documentation (Point "RMAN Backups Without Backup Library"): http://help.sap.com/saphelp_nw04/helpdata/en/3f/9d800e1aec11d2b42c00609419997a/content.htm
    > Any advise or feedback on this will be very much appreciated.
    We are also using RMAN for taking backup of all our oracle database (SAP and non-SAP), but without any BR*Tools.
    That is also possible - check sapnote #105047 (Part "50. Recovery Manager (RMAN)").
    As you mentioned, that you are a fulltime DBA you should have enough knowledge to use RMAN without BR*Tools.
    Regards
    Stefan

  • VRO - EMC Networker 8.1 EBR Appliance integration. Experiences?

    I've asked the question on the EMC support forums, btu maybe there's a chance to tap on some knowledge on the topic here: has anyone made experience with integrating the EMC Networker Appliance into the Orchestrator?
    Recently I have  deployed the EBR Appliance in my vSphere environment, now I want to automate adding\removing virtual machine to and from the backup policy.
    The VMs are being provisiond using vCAC and the vRO. Now I want to allow the VM owner to optionally add the VM into a backup policy. I would need a vRO workflow to talk to the EBR Appliance API so the particular VM would be added.
    I could not find a documentation for the EBR Appliance API anywhere, nor a EBR plug-in for vRO.
    Thanks!

    Thanks for answering so quickly!
    About the procedure you have mentioned:
    1. Note down the process that you want to automate, and how you do it manually now (you mentioned the first part, I assume currently a Backup Operator adds the new VM to a backup policy using the Networker UI, whatever that is)
    The EMC appliance integrates into the Web Client - this is the only interface you can use AFAIK. There you can tell EMC Networker (with the whole Server, DataDomain backend) which VMs you want to back up. You can choose a cluster or resource pool and back up the whole inventory element too. I administer the whole vCenter\vCAC\vRO combo including the EMC Appliance - the appliance itself however has very limited options though. You can basically only add VMs to a backup policy and restore them. The rest (liek creating new backup policies) is done by the Backup Admins on the Networker Server.
    2. See if the vendor provides a vRO Plugin, if so, check if it provides your functionality
    EMC does provide some plugins, but none of them are strictly backup related and cannot talk to the backup appliance (or, for example, VMwares' VADP)
    3. Check if the vendor provides some API  / Automation tools (didnt find anything for these two points)
    Nope, sadly. I'm waiting for someone to answer on the EMC forums, next week I'll ask one of the Backup Admins to open a SR at EMC, maybe we will get some useful info. The product documentation says that the Web Client is the only way to manage the appliance, but I don't know if this includes direct access via the API or not. This is really frustrating:(
    4. & 5.
    The EMC Backup appliance is "VADP Appliance by EMC", a third-party VADP based backup solution.By that I mean that it's VADP with the EMC Backup Infrastructure access integrated. So the whole backup planning jobs are done on the EMC Networker backend, not the appliance itself. The GUI is even the same:
    So, I guess, the API access would function similar as with VADP? Sadly I have not yet made experience with it.
    6. Worst case (...)
    I thought an alternative would be to create a new ressource pool, tell the appliance to back up every vm in there, and just move a vm in or out of the pool according to the vm owners preferences. This move can easily be automated. But, I've tested this jsut now and altohugh, after moving a vm into the pool, the appliance says it will be backed up, it throws an error during the backup job :| Meh.
    Is it possible to automate backup tasks on the native VMware VADP appliance using the Orchestrator?

  • RMAN and RAC

    Hi all,
    Just a query with RMAN and backing up RAC databases.
    Reading Metalink Note: 243760.1 (RMAN: RAC Backup and Recovery using RMAN) it suggests that, for a 2 node RAC cluster, 2 channels should be set up, with a connection to each instance. For example,
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK connect 'SYS/rac@node1';
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK connect 'SYS/rac@node2';
    On our systems though, which we inherited, the backup script has 4 channels, but all of them connecting to Instance A). For example,
    CONFIGURE DEVICE TYPE DISK PARALLELISM 4;
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK connect 'SYS/rac@node1';
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK connect 'SYS/rac@node1';
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK connect 'SYS/rac@node1';
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK connect 'SYS/rac@node1';
    Now, we have done backup/restoration testing and it all appears to work. I can confirm that both UNDO tablespaces are being backed up, and all archivelogs as well.
    I believe the reason why all connections go to the A) node is because the backup storage is locally mounted on the A) node and accessible by the B) node over the private network.
    (We use Sun Cluster to mount the backup storage globally between the nodes, with A) being the master/local access and B) having access over the network).
    The question is, is there any critical reason why we should connect to each instance, or is it a best practice type thing (e.g. to share the load between nodes) ?
    Thanks for you input.

    Hi I am trying to register 2 instances in the recovery catalog also. What was the order of operations?
    Is this sequesnce correct?
    [oracle@vtl-rman ~]$ set ORACLE_SID=fprcprod1
    [oracle@vtl-rman ~]$ rman target sys/password@fprcprod1 catalog rman/password@fprccat
    Recovery Manager: Release 10.2.0.3.0 - Production on Thu Sep 20 16:32:38 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database: FPRCPROD (DBID=1881352426)
    connected to recovery catalog database
    RMAN> register database;
    database registered in recovery catalog
    starting full resync of recovery catalog
    full resync complete
    RMAN> list incarnation;
    List of Database Incarnations
    DB Key Inc Key DB Name DB ID STATUS Reset SCN Reset Time
    1179 1180 FPRCPROD 1881352426 CURRENT 1 18-SEP-07
    RMAN> CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    new RMAN configuration parameters:
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN> CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    new RMAN configuration parameters:
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO BACKUPSET;
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN> CONFIGURE CHANNEL 1 DEVICE TYPE DISK connect 'sys/password@fprcprod1';
    new RMAN configuration parameters:
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK CONNECT '*';
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN> CONFIGURE CHANNEL 2 DEVICE TYPE DISK connect 'sys/password@fprcprod2';
    new RMAN configuration parameters:
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK CONNECT '*';
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN> list incarnation;

  • Time Capsule set up and wifi network OK but MacBook doesn't see capsule as airport device.  Do I need to do a hard reset and start again?

    I recently bought a Time Capsule and sucessfully set it up in accordance with the instruction book.  The home network and guest network seem to work fine but my MacBook cannot find the Time Capsule wirelessley.
    Initially I set up the time capsule connected to the MacBook with an ethernet cable.  The Time Machine got 30GB way through a 60GB initial back up and then stopped for no obvious reason.  Since then the capsule has not been visible to the MacBook.  I have tried to reconfigure through Airport Utility but even after reperated rescans the capsule remains invisible.
    Any help would be extremely welcome.

    1. i would restore the express to factory defaut by holding the reset button on the unit with a paperclip while you are powering it on
    2. if it restored, you should be able to see it in your wifi icon at top of screen as "airport express"
    or you can see it in airport utility
    3. then if you want to connect it wirelessly to your time capsule, you would choose "extend network" and put in relevant security and password....this would make the express a wireless access point, fed by your time capsule(main router)
    if you chose to do it wired which is a better way if you have access to ethernet port at wall, you would choose "create a wireless network" and then under the "network" tab you would choose "Bridge Mode".....this would make the express a wired access point, fed by your time capsule(main router)

  • Can no longer connect to my network and 'forget network' option has disappeared??

    Can no longer connect to my network and "forget network" option has disappeared???  (Ipod touch 5th generation). This happened on both my children's ipods. We have reset network settings but it doesn't help.

    JEM24 , your suggestion is included in:
    - iOS: Troubleshooting Wi-Fi networks and connections
    Turn your Wi-Fi router off and on2. If your ISP also provides cable or phone service, check with them before attempting this step to avoid interruption of service.
    JEM24 wrote:
    Sorry Mindi, also have your tried rebooting your router? That's all. Try that before you attempt to Restore. Cheers.

  • I can not dowload the new updated software for my Ipod touch 4G. When i do I get an error message that says Network connection has timed out. I have done the trouble shooting steps. Downloaded the latest version of Itunes, and checked network connection

    I can not dowload the new updated software for my Ipod touch 4G. When i do I get an error message that says Network connection has timed out. I have done the trouble shooting steps. Downloaded the latest version of Itunes, and checked network connection

    Disabling the computer's antivirus and firewall during the download and update usually resolves the timeout error.

Maybe you are looking for