Parallelism backup in RMAN Orcale 10g RAC

Hi All,
I want to know how parallelism works for RMAN RAC
Can you forward me to some useful links where I can get this information.
One way of doing it is:
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';
But in 10.2.0.2 onwards it says that we dont have to specify nodes. Oracle will automatically spread it accross node. is that true.. but doesnt seesm to be working?
node1> rman target /
run {
CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
CONFIGURE BACKUP OPTIMIZATION ON;
CONFIGURE CHANNEL DEVICE TYPE DISK MAXPIECESIZE 8G;
CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO'$RMANOUT/%F';
CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 2;
CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET;
CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
allocate channel c1 device type disk ;
allocate channel c2 device type disk ;
backup incremental level 0
database format '$RMANOUT/%d_%s_%T_%c_DB0' tag="DB_LEV0";
backup current controlfile for standby format
'$RMANOUT/%d_%s_%T_CONTROL_STDBY' tag "CNTRL_STDBY";
sql "ALTER SYSTEM ARCHIVE LOG CURRENT";
backup archivelog from time='sysdate-5/24'
format '$RMANOUT/%d_%s_%T_%c_ARCH0' tag "ARCH_LEV0" ;
backup current controlfile format '$RMANOUT/%d_%s_%T_CONTROL' tag "CNTRLFL" ;
backup spfile format '$RMANOUT/%d_%s_%T_SPFILE' tag "SPFILE" ;
will the above script run parallel sessions in RMAN.
I queried gv$session I cant see 2 sessions, I can only see 1.

if you want to enable parallelism you have (so to say) three ways related to channel allocation:
1. in rman settings directly
configure default device type to disk;
configure device type disk parallelism 2;
configure channel c1 device type disk connect 'aaa/bbb@node1'
configure channel c2 device type disk connect 'aaa/bbb@node2'
2. or directly in rman script, something like:
RUN
allocate channel c1 device type disk connect 'XXX/YYY@node1';
allocate channel c1 device type disk connect 'XXX/YYY@node2';
backup database plus archived log delete input;
3. or you can use automatic workload balancing with setting:
configure device type <disk or sbt> parallelism <number of channels>;
and after that issue backup command.
parallelism you may monitor by checking gv$session_longops
also rman have option for 'node affinity awareness' which means that rman during backup determines which nodes in cluster have faster access to certain datafiles than to other datafiles.
pay attention that the granule of parallelization for backupsets is the backupset...inappropriate setting of the parameter "filesperset" can lead backup to be serialized...specially if you use tapes...

Similar Messages

  • RMAN for 10g RAC in windows2003

    Hello experts,
    could any one help to configure RMAN for 10g RAC in windows2003?
    thanks,

    Hi;
    Please check:
    RMAN: RAC Backup and Recovery using RMAN [ID 243760.1]
    RMAN configuration in ORACLE RAC database
    RMAN configuration in ORACLE RAC database
    RMAN and RAC
    RMAN and RAC
    Also check this search:
    http://forums.oracle.com/forums/search.jspa?threadID=&q=RMAN+RAC&objID=f384&dateRange=all&userID=&numResults=15
    I belive those are will answer your question
    Regard
    Helios

  • User managed backup and rman  oralce 10g

    hi guys
    what are the enhancement of user managed backup and rman in oralce 10g
    would u pls tell me in understandable manner
    thanks in advance

    Hi,
    what are the enhancement of user managed backup and rman in oralce 10g
    would u pls tell me in understandable manneRefer below link
    http://dbataj.blogspot.com/2008/05/rman-versus-user-managed-backup-part-i.html
    Hope helps.
    Regards,
    X A H E E R

  • Error while taking backup  through RMAN in 10g XE

    While taking backup through RMAN in XE instance , an error comes out.
    The contents of oxe_backup_current file is as below :
    XE Backup Log
    Recovery Manager: Release 10.2.0.1.0 - Production on Wed Jul 6 15:49:51 2011
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    connected to target database: XE (DBID=2635631092)
    RMAN>
    echo set on
    RMAN> shutdown immediate;
    using target database control file instead of recovery catalog
    database closed
    database dismounted
    Oracle instance shut down
    RMAN> startup mount;
    connected to target database (not started)
    Oracle instance started
    database mounted
    Total System Global Area     805306368 bytes
    Fixed Size                     1261444 bytes
    Variable Size                209715324 bytes
    Database Buffers             591396864 bytes
    Redo Buffers                   2932736 bytes
    RMAN> configure retention policy to redundancy 2;
    old RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 2;
    new RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 2;
    new RMAN configuration parameters are successfully stored
    RMAN> configure controlfile autobackup format for device type disk clear;
    RMAN configuration parameters are successfully reset to default value
    RMAN> configure controlfile autobackup on;
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP OFF;
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters are successfully stored
    RMAN> sql "create pfile=''/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/dbs/spfile2init.ora'' from spfile";
    *sql statement: create pfile=''/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/dbs/spfile2init.ora'' from spfile*
    *RMAN-00571: ===========================================================*
    *RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============*
    *RMAN-00571: ===========================================================*
    *RMAN-03009: failure of sql command on default channel at 07/06/2011 15:50:57*
    *RMAN-11003: failure during parse/execution of SQL statement: create pfile='/usr/lib/oracle/xe/app/oracle/product/10.2.0/server/dbs/spfile2init.ora' from spfile*
    *ORA-27086: unable to lock file - already in use*
    *Linux Error: 11: Resource temporarily unavailable*
    Additional information: 8
    Additional information: 16476
    RMAN> backup as backupset device type disk database;
    Starting backup at 06-JUL-11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=102 devtype=DISK
    channel ORA_DISK_1: starting full datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00003 name=/usr/lib/oracle/xe/oradata/XE/sysaux.dbf
    input datafile fno=00005 name=/usr/lib/oracle/xe/oradata/XE/ftress_data_log01.dbf
    input datafile fno=00006 name=/usr/lib/oracle/xe/oradata/XE/ftress_data_lrg01.dbf
    input datafile fno=00001 name=/usr/lib/oracle/xe/oradata/XE/system.dbf
    input datafile fno=00009 name=/usr/lib/oracle/xe/oradata/XE/ftress_indx_log01.dbf
    input datafile fno=00010 name=/usr/lib/oracle/xe/oradata/XE/ftress_indx_lrg01.dbf
    input datafile fno=00002 name=/usr/lib/oracle/xe/oradata/XE/undo.dbf
    input datafile fno=00004 name=/usr/lib/oracle/xe/oradata/XE/users.dbf
    input datafile fno=00008 name=/usr/lib/oracle/xe/oradata/XE/ftress_data_sml01.dbf
    input datafile fno=00012 name=/usr/lib/oracle/xe/oradata/XE/ftress_indx_sml01.dbf
    input datafile fno=00011 name=/usr/lib/oracle/xe/oradata/XE/ftress_indx_mdm01.dbf
    input datafile fno=00007 name=/usr/lib/oracle/xe/oradata/XE/ftress_data_mdm01.dbf
    channel ORA_DISK_1: starting piece 1 at 06-JUL-11
    channel ORA_DISK_1: finished piece 1 at 06-JUL-11
    piece handle=/usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/backupset/2011_07_06/o1_mf_nnndf_TAG20110706T155057_718dw649_.bkp tag=TAG20110706T155057 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15
    Finished backup at 06-JUL-11
    Starting Control File and SPFILE Autobackup at 06-JUL-11
    piece handle=/usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/autobackup/2011_07_06/o1_mf_s_755797849_718dwofy_.bkp comment=NONE
    Finished Control File and SPFILE Autobackup at 06-JUL-11
    RMAN> configure controlfile autobackup off;
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP OFF;
    new RMAN configuration parameters are successfully stored
    RMAN> alter database open;
    database opened
    RMAN> delete noprompt obsolete;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to redundancy 2
    using channel ORA_DISK_1
    Deleting the following obsolete backups and copies:
    Type                 Key    Completion Time    Filename/Handle
    Backup Set           3      06-JUL-11        
      Backup Piece       3      06-JUL-11          /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/backupset/2011_07_06/o1_mf_nnndf_TAG20110706T133443_7184wr4d_.bkp
    Backup Set           4      06-JUL-11        
      Backup Piece       4      06-JUL-11          /usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/autobackup/2011_07_06/o1_mf_s_755789675_7184x7fp_.bkp
    deleted backup piece
    backup piece handle=/usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/backupset/2011_07_06/o1_mf_nnndf_TAG20110706T133443_7184wr4d_.bkp recid=3 stamp=755789684
    deleted backup piece
    backup piece handle=/usr/lib/oracle/xe/app/oracle/flash_recovery_area/XE/autobackup/2011_07_06/o1_mf_s_755789675_7184x7fp_.bkp recid=4 stamp=755789699
    Deleted 2 objects
    RMAN>
    Recovery Manager complete.
    RMAN error: See log for details.

    I think it is trying to overwrite exiting file. Either give a different name or cleanup the files in preferred location.

  • Can legato be compatible for taking backups with RMAN

    can legato software be compatible for taking backups with RMAN
    oracle 10g
    Message was edited by:
    user531314

    Rman is so feature rich and yiou can integrate your third party backup software with rman to take backups, there is nothing to worry in your case, this is very much in the reach.
    hare krishna
    Alok

  • Rman backup error in 10g rac

    hi,
    I am backup 10g rac with rman,but there is some error when backup:
    input datafile fno=00006 name=+DG1/orcl/datafile/undotbs3.265.623622323
    channel c3: starting piece 1 at 13-JUN-07
    RMAN-03009: failure of backup command on c1 channel at 06/13/2007 08:40:50
    ORA-19504: failed to create file "/oracle/rman/db_ORCL_20070613_0fik5ji0_1_1_L0"
    ORA-27040: file create error, unable to create file
    Linux Error: 2: No such file or directory
    channel c1 disabled, job failed on it will be run on another channel
    RMAN-03009: failure of backup command on c3 channel at 06/13/2007 08:40:51
    ORA-19504: failed to create file "/oracle/rman/db_ORCL_20070613_0hik5jna_1_1_L0"
    ORA-27040: file create error, unable to create file
    Linux Error: 2: No such file or directory
    channel c3 disabled, job failed on it will be run on another channel
    released channel: c1
    released channel: c2
    released channel: c3
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of release command at 06/13/2007 08:49:22
    RMAN-06012: channel: c1 not allocated

    Hi all I have the same problem. We have a 2 node rac with ASM. The archives goes to ASM. I would like to backup the archives from ASM to a filesystem. But i was given a filesystem that is only mounted on one node and it is not accessbile to the other node. When i run the following rman command i get the error on one of the channel that connect to node 2.
    My question:
    Can i use on channel that is connecting to node1 to backup all the archivelogs generated by node1 and node2 aswell since both the nodes have access to archive logs.
    Please assist.
    connect target /
    connect catalog rmanrep/[email protected]
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/opt/oracle/archive/orcl/rman/cf_%d_%T_%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK CONNECT 'SYS/oass@orcl1;
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK CONNECT 'SYS/oass@orcl2';
    BACKUP CURRENT CONTROLFILE;
    backup archivelog all format '/opt/oracle/archive/orcl/arch_bkup/%d_AL_%T_%u_s%s_p%p' delete input;
    EXIT;
    RMAN-03009: failure of backup command on ORA_DISK_2 channel at 03/17/2009 21:00:25
    ORA-19504: failed to create file "/opt/oracle/archive/orcl/arch_bkup/SPTDEV_AL_20090317_2kka60j6_s84_p1"
    ORA-27040: file create error, unable to create file
    Linux-x86_64 Error: 2: No such file or directory
    channel ORA_DISK_2 disabled, job failed on it will be run on another channel
    Thanks
    Kart

  • Rman config on 10g rac

    hi,
    i am using oracle 10g rac on aix , i want to configure rman to take complete backup . i want to use catalog and my database in on noarchive mode.
    so please guide me steps to configure rman.
    regards

    read oracle online RMAN documentation for full info and for short info i.e. step by step read the following short notes
    http://www.dba-oracle.com/real_application_clusters_rac_grid/recovery_catalog.html
    RMAN ( CATALOG CREATION ) STEP BY STEP by Joel Pérez

  • 10g Physical Standby to be used for Backup through RMAN

    Dear All,
    I have 10g Database Primary and Standby Server which is operating in Maximum Performance Mode. I want to use Standby Database for performing Weekly Full and Daily Incremental Backups through RMAN. Kindly inform me is it possible, if yes how should I configure it. I will also be using Compression and Encryption while performing backups.
    Best Regards,
    Asif

    Yes, that is possible.
    Because the standby databases are in mount mode, they can be accessed through the SYS account .
    I use the following RMAN script for the same purpose. Please note that we have configure the flashback area, so we are not letting RMAN delete the archive files:
    run {
    sql 'alter system archive log current';
    sql 'alter system archive log current';
    allocate channel ch1 type 'sbt_tape' parms 'ENV=(TDPO_OPTFILE=/usr/tivoli/tsm/client/oracle/bin64/tdpo.opt)';
    backup
    incremental level 0
    tag full_bk_db_webshop
    format 'df_%d_t%t_s%s_p%p'
    (database include current controlfile);
    backup archivelog all;
    This script is for a FULL backup ( level 0 ). You could also use the "backup full" command
    You can easily change the level of the Backup for incremental purposes.
    Starting RMAN - if configured correctly - is the same as with an open database
    export ORACLE_SID=<STDBYSID>
    rman target / rcvcat <rman/rman>@<catalogsid>
    the user for, and the catalogsid are merely examples
    Edited by: fjfranken on Mar 24, 2009 4:07 AM

  • How to make hot RMAN backup as consistent in 10g?

    Hi,
    While cloning database using rman hot backup it asking archivelog files. how to recover easily? How to make hot RMAN backup as consistent in 10g?
    Thanks,

    user2017273 wrote:
    Hi,
    While cloning database using rman hot backup it asking archivelog files. how to recover easily? How to make hot RMAN backup as consistent in 10g?
    Thanks,Take backup with "plus archivelog" command. This will require archived redo log files and automatically apply them

  • RAC backup with RMAN...put backup on diff file system

    hello all,
    I have not work a lot on SAN storages. One of my client has implementated 9i RAC. Now he wants to Add two more disk in SAN storage (Implemented RAID). So sun engineers will do this but before this i have to take full database backup(80GB database) throught RMAN. The problem or confussion from my side is that the database is on Sun SAN storage and i have to put the Full database backup taken by RMAN on local hard disk on the node (node 1 of rac). Is the possible since the SAN storage is RAW file system (as i guess) and i am putting the backup on local system.
    Please help me out ...i have do this in couple of days..
    Please tell me prosedure too to how to change the path of backup in RMAN if above is possible..
    Its urgent
    Thanks and Regards!!
    Pankaj Rawat

    Two things:
    1) You will not have any problems taking RMAN backup for RAC and raw devices. None of them make your backups any different.
    2) Based on your post, you are not very confident in your RMAN skills and this is your real problem. What is a must for you - take the backup, copy it on another machine and try to restore from it. Note, that you should NOT look at your original database during restore or take any files from there (even init.ora or spfile). If you don't have this done and don't have exact procedure - consider your backup as useless. This is a conservative approach but believe me - it's wort it when you SAN engineers screw up your storage. And they warned you. ;-)

  • Implementing RAC database backup through RMAN and grid control.

    Hi...
    plz... can any one give me good document (metalink documents id or else) to implement RAC database backup through RMAN. and also grid document...

    user8943492 wrote:
    Hi...
    plz... can any one give me good document (metalink documents id or else) to implement RAC database backup through RMAN. and also grid document...Read below links
    http://download.oracle.com/docs/cd/B19306_01/rac.102/b14197/backup.htm#i443637
    http://download.oracle.com/docs/cd/B19306_01/rac.102/b14197/rmanops.htm#i474611
    http://download.oracle.com/docs/cd/B19306_01/rac.102/b14197/toc.htm

  • 10g RAC on Solaris 10 containers - Question on Approach

    Hi All
    To introduce a little, I am trying to set-up 10g RAC (active-active) on Solaris 10 Containers. For the disaster recovery site, I was considering an option for storage replication across datacenters. As I look at the situation where the database could be highly transactional, I wanted to go for this option hoping I might be better able to recover db on dr site if a failure happens and also alleviate some load from the prod servers. In this regard I have a set of questions for which if you could share your experiences, thoughts .. I am sure will help my preperation.
    1 Is Oracle Supported on Solaris 10 containers? I believe it is not supported and ofcourse am getting into the certification matrix for this with oracle. Anyways, any work around tried out by anyone ?
    2 Which product is better in terms of performance while co-existing and co-functioning with Oracle? Sun Cluster!!! Vertas Cluster!!! any other? I am unable to link to any recommendations from Oracle and hence trying to understand the generic or say standard approach to this.
    3 I understand on Prod site, Oracle remains active-active on two node cluster while I will mirror my SAN between Prod site and DR site on a timely basis, while DB is up and running. This mirroring has to be only an asynchronous mirroring for some limitations. I am unsure about my recoverability if we need to switch over to DR. Will I be able to recover the Database to a point when my last mirroring has been completed successfully when I say the mirroring happened while the Prod db is up and running (hot backup type on disk level). Until now I used a cold backup for Storage replication and I was sure to bring it up there. This hot backup kind of attempt is raising unrest and questions about the abilities.. :-(
    4 I also have come across a term called federated databases? Is it similar to what I am trying to achieve here? Storage level replocation across data centres?
    I know it takes some time to get to the end of it and finally implement it, but your inputs will certainly help me get things straight before I hit this first click. Thanks for all your inputs, advices, suggestions. :-)
    Regards!
    Sarat

    According to Oracle "Both Oracle 9i R2 and 10g R2 databases have been certified to run in a Solaris Container."
    There are references here :- http://forums.sun.com/thread.jspa?threadID=5397695
    "Oracle databases (RAC and non-RAC) have been certified to run in a global Solaris 10 Container"
    What storage are you using ? (filesystem, ASM ?) Personally I prefer ASM now, but it does depend on the storage platform and backup strategy.
    What backup infrastructure do you have ? RMAN backup directly to tape is better than file copy.
    For DR standby purposes I would use Dataguard instead of disk mirroring / storage replication. It is much more flexible (e.g can switch direction of replication, do incremental backups from the standby etc).
    I would use CRS instead of VCS. CRS is built for the job, and integrates with netca, dbca, etc for service management, and also integrates with Dataguard Broker for standby switchover.

  • Seeking a solid reccomendation concerning 10g RAC implementation.

    I need a solid recommendation regarding what hardware I should use for my planned Oracle 10g RAC environment.
    Currently, I am looking for both node and SAN recommendations.
    I also created a list of 11 questions that I need to have answered.
    Here is how this will be configured:
    3 Node Oracle 10g RAC
    Each Node will consist of:
    32Gb of RAM (minimum)
    Windows 2003 64-bit Enterprise (corporate standard, but I can go with Windows 2008 if I have a valid justification)
    74Gb RAID 1 (minimum)
    Dual 10Gb Ethernet NICs
    The SAN will consist of:
    750Gb-3Tb dedicated to Oracle
    10Gb Ethernet NICs
    Here are some of my general questions:
    1.) Are there any benchmarks or case studies that you are aware of that might help in the decision process regarding hardware?
    2.) Where should my backups reside (SAN or elsewhere)?
    3.) What margin should be added for SAN provisioning and waste (even if thin provisioning is implemented)?
    4.) My CIO has decided to direct me to go with 10GbE copper instead of fiber channel, what unplanned hiccups can I expect?
    5.) What are the caveats of running dual redundant SAN systems?
    6.) We are currently using DELL hardware for all other systems, however I do have the freedom to change the vendor for this particular project if I can state a valid business justification. Any other vendors out there that make a better SAN or Node solution than Dell/EMC?
    7.) How much local storage do I need on each node?
    8.) Can I utilize 1 node to run ETL during production hours without drastically affecting database performance?
    9.) Regarding the maintenance of this setup, are their any particular classes or training you would recommend? I am a seasoned Oracle DBA, but could use any specific training on the specifics of RAC and/or general performance.
    10.) Are there specific advantages in Oracle 11g RAC vs. 10g that would be worth the cost of upgrading our 1000+ 10g user licenses?
    11.) Are there any studies on the performance advantages/disadvantages of running Oracle 10g on Windows vs. Solaris (or any Unix)?
    I will consider all input of high value, so please let me know what you would recommend.
    Thank you for your time.

    please find answers that i know for some questions.
    1.) Are there any benchmarks or case studies that you are aware of that might help in the decision process regarding hardware?
    2.) Where should my backups reside (SAN or elsewhere)?
    => what is the backup method you will be using? certainly recommend RMAN (in addition to OS backups that you are planning to use) for block recovery, should there a block corruption.
    i would keep some copies on the SAN local and mirror to DR site too.
    3.) What margin should be added for SAN provisioning and waste (even if thin provisioning is implemented)?
    => do not suggest thin provisioning for production.
    how big the volumes are going to be? reason for asking the Q is, if the volumes are going to be in TB, percentages can be lower. please plan for 2 years atleast.
    4.) My CIO has decided to direct me to go with 10GbE copper instead of fiber channel, what unplanned hiccups can I expect?
    5.) What are the caveats of running dual redundant SAN systems?
    6.) We are currently using DELL hardware for all other systems, however I do have the freedom to change the vendor for this particular project if I can state a valid business justification. Any other vendors out there that make a better SAN or Node solution than Dell/EMC?
    7.) How much local storage do I need on each node?
    => have beetween 75GB to 100GB. hope you are going to have only ORACLE RDBMS and CRS software in here.
    please make sure that you rotate your listener logs and alert logs and regular removal of old .trc files older than certain number of days old.
    8.) Can I utilize 1 node to run ETL during production hours without drastically affecting database performance?
    => node usage will help from CPU standpoint only. what about the disk writes it is going to perform to the data files?
    9.) Regarding the maintenance of this setup, are their any particular classes or training you would recommend? I am a seasoned Oracle DBA, but could use any specific training on the specifics of RAC and/or general performance.
    => attend a 5 day course from Oracle. install RAC on own and play with it.
    10.) Are there specific advantages in Oracle 11g RAC vs. 10g that would be worth the cost of upgrading our 1000+ 10g user licenses?
    => did not compare, though installed 11g.
    11.) Are there any studies on the performance advantages/disadvantages of running Oracle 10g on Windows vs. Solaris (or any Unix)?
    => running on windows? please do not. used on linux a lot. pretty stable and solid. recommend to go with 10.2.0.4 or higher.
    hope the above will help.

  • Backup with rman hang

    I tested this step of backup of rman on my newly installed 10g R2 SE on AIX box, but it seemed hung there (at least after 2 hours, nothing continue)
    RMAN> run {
    backup as compressed backupset incremental level 0 cumulative device type disk tag 'BAANBK$LEVEl_0' database;
    Starting backup at 10-JAN-07
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting compressed incremental level 0 datafile backupset
    channel ORA_DISK_1: specifying datafile(s) in backupset
    input datafile fno=00006 name=/dbbaan/oradata/baanbk/baandbs02.dbf
    input datafile fno=00007 name=/dbbaan/oradata/baanbk/baandbs03.dbf
    input datafile fno=00008 name=/dbbaan/oradata/baanbk/baandbs04.dbf
    input datafile fno=00009 name=/dbbaan/oradata/baanbk/baandbs05.dbf
    input datafile fno=00010 name=/dbbaan/oradata/baanbk/baandbs06.dbf
    input datafile fno=00011 name=/dbbaan/oradata/baanbk/baanidx01.dbf
    input datafile fno=00012 name=/dbbaan/oradata/baanbk/baanidx02.dbf
    input datafile fno=00013 name=/dbbaan/oradata/baanbk/baanidx03.dbf
    input datafile fno=00014 name=/dbbaan/oradata/baanbk/baanidx04.dbf
    input datafile fno=00015 name=/dbbaan/oradata/baanbk/baanidx05.dbf
    input datafile fno=00016 name=/dbbaan/oradata/baanbk/baanidx06.dbf
    input datafile fno=00017 name=/dbbaan/oradata/baanbk/baanidx07.dbf
    input datafile fno=00001 name=/dbbaan/oradata/baanbk/system01.dbf
    input datafile fno=00002 name=/dbbaan/oradata/baanbk/undotbs01.dbf
    input datafile fno=00003 name=/dbbaan/oradata/baanbk/undotbs02.dbf
    input datafile fno=00004 name=/dbbaan/oradata/baanbk/sysaux01.dbf
    input datafile fno=00005 name=/dbbaan/oradata/baanbk/baandbs01.dbf
    input datafile fno=00018 name=/dbbaan/oradata/baanbk/users01.dbf
    channel ORA_DISK_1: starting piece 1 at 10-JAN-07
    That´s all i got on screen. Where is the rman log, so I can check what was going? The same script is running well on my 10gR2 EE at RHEL3. Tried without the "compressed" came out the same hung.

    $ rman target / nocatalog
    Recovery Manager: Release 10.2.0.1.0 - Production on Wed Jan 10 13:20:24 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database: BAANBK (DBID=905495458)
    using target database control file instead of recovery catalog
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 3 DAYS;
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    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 '/dbrecovery/flash_recovery_area/%U';
    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 '/oracleapp/oracle/product/10.2.0/db_1/dbs/snapcf_baanbk.f'; # default
    This is the same configuration as that of RHEL3
    This is a dev box, so no other activity.
    Message was edited by:
    user508054
    Message was edited by:
    user508054

  • BR*Backup or RMAN natively? Pro and cons

    Hello,
    I'm an Oracle DBA and we are currently working on a migration of our database environnnements.
    SAP Brbackup is used for our SAP database backups on our current architecture.
    We want to uniformize our backup strategy: use RMAN for all our databases, SAP or not SAP.
    I was wondering if it was possible to use RMAN natively, without using BRBackup ?
    If we do that, is it problematic with the SAP support for our SAP environnements ?
    Future architecture will be on RAC/dataguard : is it possible to use BRBACKUP for parallelized backup on RAC standby databases with redo apply on ?
    Is brbackup really usefull for ORACLE DBA ? What are the advantages for us to use it ?
    Thanks
    Thomas

    Hi Thomas,
    well let's summarize some key facts:
    - You can also use RMAN with BR*Tools (with some limitiations like you are not able to use a RMAN catalog for example)
    - You are allowed to use native RMAN with all its functionality, but you will get no support by SAP for that (sapnote #105047 - point 64)
    I personally don't like the BRTools for backup or restore and prefer native RMAN. If you use some third party backup tools like IBM TSM, it is also cheaper to use native RMAN instead of BRTools with its media management library (TDP for Oracle vs. TDP for mySAP).
    Especially if you have several nonSAP oracle databases it really makes sense to consolidate the backup strategy. I also implemented a RMAN catalog strategy for all oracle database to have a centralized management and report point. I run several Data Guard environments and RMAN is integrated much better into such environments of course. 
    Well your question about the usefulness of brbackup and brrestore is very hard to answer. In my personal opinion the BR*Tools are for the mass-market of SAP users and companies who don't have their own Oracle DBAs. The tools should help you doing your daily business wihtout any knowledge about Oracle (which is pretty dangerous in my opinion - if you search this forum you see what i mean), but you have several limitations with them and there are so many things happening under the hood.
    If you know what you are doing - go for native RMAN )
    Regards
    Stefan
    P.S.: SAP will slap me now )

Maybe you are looking for

  • OHS: MBean error while trying to access server configuration

    I have an SSL installation of WebLogic. I further installed webtier components (which includes OHS) for 11g. I can access the OHS default port (7777) fine but when I try to access server confuration for OHS on the em page I get following error: oracl

  • Problem with fonts when opening a pdf in Illustrator

    Hi all! I'm working on a pdf. I do NOT have the original. So I've found it's easier to open the pages in Illustrator, make edits, and resave as a pdf. The problem is that Illustrator is converting some text to outlines. It is saying I don't have the

  • How to get/set value in illustrator preference file using ActionScript 3.0

    Hi all, I want to get/set the flex panel components preference in illustrator preference file using ActionScript 3.0. I tried to achieve this  like -- import com.adobe.illustrator.Preferences; var pref : Prefereneces = new Preferences(); //To set val

  • Frame work  problem along with tag libraries...

    Hi.. I am new to jsp and am making a project in it, I am following MVC architecture but my problem is i am unable to understand all this concept of frameworks like struts, spring etc... i need some help with what they actually are..?? also i am not u

  • How to make stock zero in the past date

    Dear all, My client has implemented sap recently and during the start up the material update was done using movement 561. They have taken the physical inventory on 30.06. Now they want to undo some of the material movements so that the stock on 30.06