RMAN / NetBackup configuration

Hi all, thanks in advance for any help you can offer.
I have been trying to implement NetBackup for SAP for some time now with progress but not success.
Currently it looks like my backup does not include the archive logs:
SQL> set echo on
SQL> alter database open
  2  ;
alter database open
ERROR at line 1:
ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
SQL> alter database open noresetlogs ;
alter database open noresetlogs
ERROR at line 1:
ORA-01610: recovery using the BACKUP CONTROLFILE option must be done
SQL> recover database using backup controlfile ;
ORA-00279: change 41195064 generated at 03/20/2008 01:01:10 needed for thread 1
ORA-00289: suggestion : /oracle/FSX/oraarch/FSXarch1_4529_636301756.dbf
ORA-00280: change 41195064 for thread 1 is in sequence #4529
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
ORA-00308: cannot open archived log
'/oracle/FSX/oraarch/FSXarch1_4529_636301756.dbf'
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3
My guess is there's something wrong with my initFSX.sap file...  have any of you worked through a similar problem so that you can offer advice?
Thanks, George

Hi all, thanks in advance for any help you can offer.
I have been trying to implement NetBackup for SAP for some time now with progress but not success.
Currently it looks like my backup does not include the archive logs:
SQL> set echo on
SQL> alter database open
  2  ;
alter database open
ERROR at line 1:
ORA-01589: must use RESETLOGS or NORESETLOGS option for database open
SQL> alter database open noresetlogs ;
alter database open noresetlogs
ERROR at line 1:
ORA-01610: recovery using the BACKUP CONTROLFILE option must be done
SQL> recover database using backup controlfile ;
ORA-00279: change 41195064 generated at 03/20/2008 01:01:10 needed for thread 1
ORA-00289: suggestion : /oracle/FSX/oraarch/FSXarch1_4529_636301756.dbf
ORA-00280: change 41195064 for thread 1 is in sequence #4529
Specify log: {<RET>=suggested | filename | AUTO | CANCEL}
ORA-00308: cannot open archived log
'/oracle/FSX/oraarch/FSXarch1_4529_636301756.dbf'
ORA-27037: unable to obtain file status
Linux-x86_64 Error: 2: No such file or directory
Additional information: 3
My guess is there's something wrong with my initFSX.sap file...  have any of you worked through a similar problem so that you can offer advice?
Thanks, George

Similar Messages

  • NEW 9I RMAN: PERSISTENT CONFIGURATION PARAMETERS - INTRODUCTION

    제품 : RMAN
    작성날짜 : 2001-11-09
    NEW 9I RMAN: PERSISTENT CONFIGURATION PARAMETERS - INTRODUCTION
    ===============================================================
    오라클 9i 부터는 RMAN 에서 항상 사용되는 파라미터 세팅을 고정적으로 할 수 있게
    되어 매번 파라미터를 주어야 하는 수고를 하지 않아도 된다.
    Persistent Configuration Parameters 기능은 RMA 에 다음과 같은 변화를 주었다:
    * RMAN 에서 파라미터의 디폴트를 DBA 가 커스터마이징 할 수 있게 되어 사용이 편리해졌다.
    * 한번 커스터마이징한 파라미터는 모든 Job 에 적용이 된다.
    * DBA 는 'BACKUP DATABASE' 명령어 하나만으로 RMAN 에서 데이터베이스 백업을 수행
    할 수 있게 되었다.
    * 오라클 9i 의 CONFIGURE 명령어는 RMAN 의 default setting 을 영구적으로 바꾸어 준다.
    * 파라미터의 값은 컨트롤파일에 저장이 되며 필요한 경우에는 리커버리 카다로그와 맞추어
    주는 과정이 필요하다.
    오라클 9i RMAN 에서는는 'show' 명령어로 현재의 파라미터 세팅을 확인 할 수 있다.
    SHOW show_operand [,show_operand ...];
    show_operand: RETENTION POLICY |
    EXCLUDE |
    BACKUP COPIES |
    CHANNEL |
    DEFAULT DEVICE TYPE |
    DEVICE TYPE |
    SNAPSHOT CONTROLFILE |
    ALL
    'show all' 명령어로 현재의 모든 세팅을 확인 한다.
    RMAN> show all;
    using target database controlfile instead of recovery catalog
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP OFF; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/beta/app/oracle/product/9.0.1/dbs/snapc
    f_V901.f'; # default
    이렇게 Persistent Configuration Parameters 를 세팅하기 위해서는 스크립트를 만들어
    수행 하는 것이 좋다:
    run {
    # Use the configure commands to create your backup policy.
    # When complete these will be the new persistent
    # configuration parameters for RMAN in the controlfile
    # of the target datbase.
    CONFIGURE RETENTION POLICY TO REDUNDANCY 3;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO
    '/proj/SME9i/backup/%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/proj/SME9i/backup/snapf_prod9.f';
    이렇게 스크립트를 수행 한 후에 결과를 확인 하기 위해서는:
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 3;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO
    '/proj/SME9i/backup/%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1;
    CONFIGURE MAXSETSIZE TO UNLIMITED;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/proj/SME9i/backup/snapf_prod9.f';
    결과는 위와 같다.
    --------------THE END------------------------------------------------------

    Search button?!?!
    Re: seek some good documents on Recovery MANager  to start with
    Aron

  • Question on Netbackup configuration

    DB version : 11.2
    OS platform : AIX 6.1
    Netbackup version : 7
    I need to configure RMAN backup to tape for my Production DB using netbackup as the MML. The instruction given to me was
    Shutdown all DBs running from this Oracle Home        # Missed this step
    cd $ORACLE_HOME/lib
    ls -lrt libobk.a                                                                                
    ln -s /usr/openv/netbackup/bin/libobk.a64 libobk.a
    Start all DBsI did all the above steps except bringing down the DB running from this ORACLE_HOME. After the symbolic link creation I even tested backup of the Control file to tape successfully. Tonight at non-peak hours I am going to run the Full DB backup. Will there be any issue due to DB not being bounced? I can't test it now as it is production.

    Hi,
    did all the above steps except bringing down the DB running from this ORACLE_HOME...
    Will there be any issue due to DB not being bounced?Don't worry the MML installation and link creation can be done without stopping the running instances since Oracle release 9i.
    From:
    http://docs.oracle.com/cd/B10500_01/server.920/a96566/rcmconfg.htm#453248
    You do not need to start or shut down the instance when installing the media management library.You seem to be on 11gR2 so it all should work fine.
    I can't test it now as it is productionWell doing the backup now will generate extra I/O now as well....
    Regards,
    Tycho

  • RMAN & Netbackup for Oracle

    Hi,
    I want to configure RMAN to backup the oracle database using Veritas netbackup(I want to backup the database directly to a tape device), can anyone tell me what the hardware/software requirements are??
    Thanks,
    GK

    You need robort library of veritas netbackup and netbackup software to configure policies and schedule policies.

  • WHAT IS BEST STRATEGY FOR RMAN BACKUP CONFIGURATION

    Hi all,
    my database size is 50GB I want TAKe WEEKLY FULL BACKUP AND INCREMENTAL BACKUP
    WITHOUT RECOVERY CATALOG.by follwing commands
    weekly full database backup
    run
    backup as compressed backupset
    incremental level=0
    device type disk
    tag "weekly_database"
    format '/sw/weekly_database_%d_t%t_c%c_s%s_p%p'
    database;
    I want do CONFIGURE RMAN BY FOLLWING stragtegy
    CONFIGURE RETENTION POLICY TO REDUNDANCY window of 14 days.
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO
    '\SW\AUTOCFILE_'%F';
    and other is by default
    sql>alter system set control_file_record_keep_time=15 days;
    os--aix6 and for two database 10g2 and 11g2
    what is best configuration strategy for rman backup.AND BACKUP WITH RECOVERY CATALOG OR WITHOUT RECOVERY CATALOG
    PLEASE TELL ME
    Edited by: afzal on Feb 26, 2011 1:45 AM

    For simply two databases, there really wouldn't be a need for a recovery catalog. You can still restore/recover without a controlfile and without a recovery catalog.
    From this:
    afzal wrote:
    CONFIGURE RETENTION POLICY TO REDUNDANCY window of 14 days.I am assuming you want to keep two weeks worth of backups, therefore these:
    alter system set control_file_record_keep_time=15 days;
    CONFIGURE RETENTION POLICY TO REDUNDANCY window of 14 daysShould be:
    RMAN> sql 'alter system set control_file_record_keep_time=22';
    RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14;22 would give you that extra layer of protection for instances when a problem occurs with a backup and you want to ensure that data doesn't get aged out.

  • RMAN Parameter configuration errors

    I am trying to run the following script to set configuration parameters for rman:
    rman <<!!
    connect rcvcat rman/${RMAN_PWD}@${RMANCAT}
    connect target /
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 15 DAYS;
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/u03/app/oracle
    /backups/RMAN/${SID}/%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO COMPRESSED BACKUPSET;
    CONFIGURE CHANNEL 1 DEVICE TYPE DISK FORMAT '/u03/app/oracle/backups/RMAN/${SID}
    /backup_db_%d_S_%s_P_%p_T_%t' MAXPIECESIZE 1024m;
    CONFIGURE CHANNEL 2 DEVICE TYPE DISK FORMAT '/u03/app/oracle/backups/RMAN/${SID}
    /backup_db_%d_S_%s_P_%p_T_%t' MAXPIECESIZE 1024m;
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE;
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/app/oracle/flash_recovery_area/${SI
    D}/snapcf_ev.f';
    for some reason I get the errors...
    for CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO COMPRESSED BACKUPSET;
    RMAN>
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01005: syntax error: found "backup": expecting one of: ";"
    RMAN-01007: at line 1 column 42 file: standard input
    and for CONFIGURE ARCHIVELOG DELETION POLICY TO NONE;
    RMAN>
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01005: syntax error: found "identifier": expecting one of: "backup"
    RMAN-01008: the bad identifier was: DELETION
    RMAN-01007: at line 1 column 22 file: standard input
    I can't find anything wrong with the syntax in the script, but I'm fairly new to this stuff so I could just be missing something. Does anyone know what could be causing these errors?

    I just realized that I was running this script against 9i instances. The script is meant to be run against 10g instances and worked fine when I did so. I guess I'll have to adjust the script accordingly for 9i.

  • RMAN/TSM Configuration - Best Practices?

    Wondering how best to configure RMAN with TSM from a network perspective. Dual HBA's? Suggestions?
    Thanks.

    * The OWB client software will reside on each user's windows desktop.
    Yes.
    * Should there be one repository that will deploy to the runtime environments of TEST, USER ACCEPTANCE and PRODUCTION environments? or should there be three repositories, one for each environment?
    One.
    * If there is only a single repository that will deploy to all three environments, should it reside on TEST, USER ACCEPTANCE or PRODUCTION server?
    Test, but you need a repository on the other environments too.
    * Does OWB have sufficient version control capabilities to drive three environments simultaneously?
    No, no version control at all. You can buy a third-party tool like http://www.scm4all.com
    * Is it possible to have an additional development repository on a laptop to do remote development of source/target definition, ETL etc and then deploy it to a centralized development repository? Perhaps it is possible to generate OMB+ scripts from the laptop repository and then run them against the centralized repository on the shared server.
    Use the export/Import from the OWB via mdl-Files.
    Regards
    Detlef
    Message was edited by:
    289512
    null

  • RMAN/NETBACKUP Issue : how to link netbackup with rman in windows?

    Hi friends,
    Please let me know what are steps needed to link netbackup 6.0 with rman 8.1.0.7 and 9.2.0.1 in windows 2003 (32bit) server ?
    Thanks, Muhammed.

    Install your netbackup. After that you will have samples given by netbackup which will give a basic structure for backup scripts. <install_folder>\ext\db_ext\oracle\samples\rman.
    You'll have to link your netbackup with oracle. It is just a script that you'll run. It will be in <install_folder>\openv\netbackup\bin\oracle_link. This will create the necessary softlinks.

  • Oracle RAC - RMAN + Netbackup

    Hi,
    I have this problem with Oracle Linux, Oracle RAC and Netbackup:
    RMAN> run {
    2> allocate channel t1 type 'sbt_tape' parms "ENV=(NB_ORA_POLICY=PROTECT_ORACLE_1,NB_ORA_SERV=NBBK12)";
    3> backup current controlfile tag TEST1;
    4> release channel t1;
    5> }
    allocated channel: t1
    channel t1: SID=239 instance=ORACX_1 device type=SBT_TAPE
    channel t1: Veritas NetBackup for Oracle - Release 6.5 (2010042404)
    Starting backup at 30-MAR-12
    channel t1: starting full datafile backup set
    channel t1: specifying datafile(s) in backup set
    including current control file in backup set
    channel t1: starting piece 1 at 30-MAR-12
    released channel: t1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on t1 channel at 03/30/2012 12:56:13
    ORA-19513: failed to identify sequential file
    ORA-27206: requested file not found in media management catalog
    # ls -al /usr/openv/netbackup/logs/user_ops/
    total 20
    drwxrwxrwx 5 root bin 4096 Apr 2 14:23 .
    drwxrwxrwx 10 root bin 4096 Apr 2 12:38 ..
    drwxrwxrwx 4 oracle oinstall 4096 Apr 2 14:06 dbext
    drwxr-xr-x 3 oracle oinstall 4096 Apr 2 14:23 dbtemplates
    drwxrwxrwx 2 root bin 4096 Mar 29 16:04 nbjlogs
    On bp.conf I have same name's client of mater server policy.
    Can you help me?
    Thanks

    try to disk first
    RMAN > backup current controlfile tag TEST1;
    then try spfile to tape
    RMAN> run {
    allocate channel t1 type 'sbt_tape' parms "ENV=(NB_ORA_POLICY=PROTECT_ORACLE_1,NB_ORA_SERV=NBBK12)";
    backup spfile;
    release channel t1;
    dont think you need nb_ora_serv unless the NBU software didnt know where to send the backups but it should.
    in netbackup admin console, look at the job activity and watch and see does a connection come in from the NBU client, the client being the server where the database resides
    have you ever succesfully backed anything else from RAC to NBU? Took me ages first time to get it right.

  • RMAN-05021 configuring retention policy on standby

    Hello all.
    Running Oracle 11.2.0.2 on Linux (x64); single-node instance.
    We've the following setup:
    bvlive (PRIMARY)
    bvstby2 (STANDBY)
    We currently have a retention policy of 21 days, and backup space on the standby is starting to be an issue.
    Initially, I thought I could reconfigure this on the standby - but RMAN won't allow this:
    STANDBY:
    RMAN> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14 days;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of configure command at 10/15/2012 10:09:50
    RMAN-05021: this configuration cannot be changed for a BACKUP or STANDBY control fileWhich makes sense when I think about it. I saw this thread retention policy is not configure but get different results:
    PRIMARY:
    RMAN> configure retention policy to recovery window of 14 days;
    old RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 21 DAYS;
    new RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14 DAYS;
    new RMAN configuration parameters are successfully stored
    RMAN> show all;
    RMAN configuration parameters for database with db_unique_name BVLIVE are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 14 DAYS;STANDBY:
    RMAN> SHOW ALL;
    RMAN configuration parameters for database with db_unique_name BVSTBY2 are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 21 DAYS;Which also makes sense; so I'm not convinced the original poster solved his problem. I've seen a few threads about this which involve:
    1. shutting down standby
    2. configuring retention policy on primary
    3. taking a backup controlfile from primary
    4. copying it across to the standby
    5. restarting standby using the backed-up controlfile
    But then this seems to be for RAC, which we're not using.
    It occurred to me that I could use the KEEP UNTIL option when taking backups, but ran into; ORA-19811: cannot have files in DB_RECOVERY_FILE_DEST with keep attributes (i.e. I can't use KEEP and store backups in the FRA).
    Can anyone please advise on the best way to get the retention period down on the standby, ideally without having to rebuild the standby from scratch?
    Thanks,
    Ray
    Edited by: ray_h on 15-Oct-2012 03:33

    Hello all.
    @ P. Forstmann: thanks for confirming.
    @ S Rao: Yep - this is the link I had in mind. Tried it out and it worked. One thing to note is that I didn't have to rename datafiles - presumably creating the standby controlfile negates the need for this in 11g (indeed, the alert log shows these two lines when you mount):
    Set as converted control file due to db_unique_name mismatch
    Changing di2dbun from bvlive to bvstby2which put my mind at ease when the rename commands failed, saying the files didn't exist
    @ mseberg: Typically, our MOS license ran out just as a useful link shows up.
    Thanks everyone.
    Ray

  • Rman default configured fine and in v$rman_configuration but cannot display

    using RMAN show all; or show default device type;
    anything I missed? thanks.
    - Zack

    You pretty much hit the nail on the head. Thank!
    Just didn't realize I needed to set the text of the component but with your
    tip and thinking about it, it makes sense.
    Actually I needed to use:
    setText(t_label.getText());
    Using toString got me: "java.swing......" (the components text representation)
    Thanks a bunch!
    /Steve

  • RMAN BACKUP configured to asm

    Vinoth here.....Hi to all
    We have rman backup in our environment and rman backup location is in local server '/oracle/app/oracle/rman_backpup' like this, when i check with that physical location no backup file is found. It seems like backup is stored in asm diskgroup '+DGBACKUP'. I am confused because i saw the rman log file which is written to a file during the rman backup process, it shows the backup is available in '/oracle/app/oracle/rman_backpup'. can anyone explain hw it happens because i am new to asm environment.
    Thanks in advance

    See my List Backup looks like as below
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    823 Full 15.15G DISK 00:03:39 05-AUG-12
    BP Key: 823 Status: AVAILABLE Compressed: NO Tag: FULLBKP
    Piece Name: /oracle/backup/SMHPMBLD00/today/bckdat_790488273_827_1_prnhr p6h_1_SMCPROD.bkp
    List of Datafiles in backup set 823
    File LV Type Ckp SCN Ckp Time Name
    3 Full 256379481 05-AUG-12 +DATA/smcprod/datafile/undotbs1.258.77854121                                                                                        9
    4 Full 256379481 05-AUG-12 +DATA/smcprod/datafile/users.259.778541219
    7 Full 256379481 05-AUG-12 +DATA/smcprod/datafiles/ts_ris_data_01.dbf
    9 Full 256379481 05-AUG-12 +DATA/smcprod/datafiles/ts_pacs_data_01.dbf
    11 Full 256379481 05-AUG-12 +DATA/smcprod/datafiles/ts_pacs_data_02.dbf
    12 Full 256379481 05-AUG-12 +DATA/smcprod/datafiles/ts_pacs_data_03.dbf
    14 Full 256379481 05-AUG-12 +DATA/smcprod/datafiles/ts_pacs_data_05.dbf
    16 Full 256379481 05-AUG-12 +DATA/smcprod/datafiles/ts_pacs_data_07.dbf
    17 Full 256379481 05-AUG-12 +DATA/smcprod/datafile/system.274.789902945
    [oracle@smhpmbld00 today]$ pwd
    /oracle/backup/SMHPMBLD00/today
    [oracle@smhpmbld00 today]$ ls
    afiedt.buf
    [oracle@smhpmbld00 today]$
    But i didnt find any backup piece in the path: /oracle/backup/SMHPMBLD00/today/bckdat_790488273_827_1_prnhr
    But backups are found in the location below and it is in Zip file
    /oracle/backup/SMHPMBLD00
    [oracle@smhpmbld00 SMHPMBLD00]$ ls
    backup_2012-06-26_SMCPROD.tar.gz backup_2012-07-07_SMCPROD.tar.gz backup_2012-07-18_SMCPROD.tar.gz backup_2012-07-29_SMCPROD.tar.gz
    backup_2012-06-27_SMCPROD.tar.gz backup_2012-07-08_SMCPROD.tar.gz backup_2012-07-19_SMCPROD.tar.gz backup_2012-07-30_SMCPROD.tar.gz
    backup_2012-06-28_SMCPROD.tar.gz backup_2012-07-09_SMCPROD.tar.gz backup_2012-07-20_SMCPROD.tar.gz backup_2012-07-31_SMCPROD.tar.gz
    backup_2012-06-29_SMCPROD.tar.gz backup_2012-07-10_SMCPROD.tar.gz backup_2012-07-21_SMCPROD.tar.gz backup_2012-08-01_SMCPROD.tar.gz
    backup_2012-06-30_SMCPROD.tar.gz backup_2012-07-11_SMCPROD.tar.gz backup_2012-07-22_SMCPROD.tar.gz backup_2012-08-02_SMCPROD.tar.gz
    backup_2012-07-01_SMCPROD.tar.gz backup_2012-07-12_SMCPROD.tar.gz backup_2012-07-23_SMCPROD.tar.gz backup_2012-08-03_SMCPROD.tar.gz
    backup_2012-07-02_SMCPROD.tar.gz backup_2012-07-13_SMCPROD.tar.gz backup_2012-07-24_SMCPROD.tar.gz backup_2012-08-04_SMCPROD.tar.gz
    backup_2012-07-03_SMCPROD.tar.gz backup_2012-07-14_SMCPROD.tar.gz backup_2012-07-25_SMCPROD.tar.gz backup_2012-08-05_SMCPROD.tar.gz
    backup_2012-07-04_SMCPROD.tar.gz backup_2012-07-15_SMCPROD.tar.gz backup_2012-07-26_SMCPROD.tar.gz today
    backup_2012-07-05_SMCPROD.tar.gz backup_2012-07-16_SMCPROD.tar.gz backup_2012-07-27_SMCPROD.tar.gz
    backup_2012-07-06_SMCPROD.tar.gz backup_2012-07-17_SMCPROD.tar.gz backup_2012-07-28_SMCPROD.tar.gz
    [oracle@smhpmbld00 SMHPMBLD00]$ pwd
    sho parameter db_rec
    NAME TYPE VALUE
    db_recovery_file_dest string +DGFLASH
    db_recovery_file_dest_size big integer 5727M
    db_recycle_cache_size big integer 0
    Oracle 11G R2 Rac DB 2 node
    **How to find the Rman script, and where is it placed?**
    Edited by: 950327 on Aug 5, 2012 1:32 AM
    Edited by: 950327 on Aug 5, 2012 1:36 AM
    Edited by: 950327 on Aug 5, 2012 1:40 AM

  • RMAN area configuration requirments

    I want to take my back up by RMAN , i know i need /ORAflash area. what other things i need to make RMAN ready for taking backup...
    Secondly what is the defauld location of /ORAflash area? Is it possible i can make flash area on some remote location?

    nothing specific
    If DB_RECOVERY_FILE_DEST is set to the flash area then
    BACKUP DATABASE will work. however you may need more than this.

  • How to configure Rman for Grid 11g

    hi all
    i am using Oracle Grid 11g R2.
    Oracle Database 11g R2.
    Oracle Linux 5.5
    i want to configure Rman for my Rac i searched and found some notes
    such as
    http://oraclehack.blogspot.com/2010/07/oracle-11gr2-rman-netbackup-and-media.html
    http://oracle-tns.com/duplicate-an-oracle-11gr2-with-rman/
    can anyone guide me how to configure Rman?
    Question Moved To Rman Forum!
    nisha
    Edited by: nisha on Jun 5, 2011 9:44 PM

    hi
    what is SBT here?
    CONFIGURE DEVICE TYPE sbt PARALLELISM 3;
    Channel Connections to Cluster Instances with RMAN
    Channel connections to the instances are determined
    using the connect string defined by channel configurations.
    For example, in the following configuration, three channels are allocated using dbauser/pwd@service_name. If you configure the SQL Net service name with load balancing turned on, then the channels are allocated at a node as decided by the load balancing algorithm.
    CONFIGURE DEVICE TYPE sbt PARALLELISM 3;
    CONFIGURE DEFAULT DEVICE TYPE TO sbt;
    CONFIGURE CHANNEL DEVICE TYPE SBT CONNECT 'dbauser/pwd@service_name'Edited by: nisha on Jun 6, 2011 12:27 AM

  • Rman to tape using netbackup doubts

    Hi guys,
    I have some doubts regarding backup with Rman to tape.
    I´m using netbackup and already created a policy 'dwRman'
    run{
    allocate channel T1 type 'ORA_SBT_TAPE_1'
    PARMS 'ENV=(NB_ORACLE_POLICY=dwRman)';
    BACKUP AS COMPRESSED BACKUPSET
    DATABASE TAG 'DB_LEVEL0_WHOLE'
    FORMAT '%d_%I_level0_%s_%p_%u.bkp'
    PLUS ARCHIVELOG TAG 'ARCHIVEDLOGS'
    FORMAT '%d_%I_arch_%s_%p_%u.bkp'
    delete input;
    RELEASE CHANNEL T1;
    but when I run the script it generates the files on DISK
    Is it necessary to set any of theese CONFIGURE commands ?
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/oradata/ware/RMAN/autobackup/cf%F';
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO COMPRESSED BACKUPSET;
    CONFIGURE DEVICE TYPE 'SBT_TAPE' BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 1;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/oradata/ware/RMAN/%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 '/oradata/ware/RMAN/snapcf_geo.f';
    thanks,
    Sylar
    Message was edited by:
    Sylar

    I have similar question.
    I have configured RMAN backups using NEtbackup and ran few test backups and worked fine. I could restore and recover the database too(testing).
    Everything works fine.
    I would like to delete these test backups from RMAN repository and start real backups.
    This is the script;
    RUN {
    ALLOCATE CHANNEL ch00 TYPE 'SBT_TAPE';
    ALLOCATE CHANNEL ch01 TYPE 'SBT_TAPE';
    send 'NB_ORA_CLIENT=ts-oradb-si,NB_ORA_POLICY=ts-oradb-si_oracle_test,NB_ORA_SCHED=Default-Application-Backup';
    BACKUP
    FULL
    SKIP INACCESSIBLE
    TAG hot_db_bk_level0
    FILESPERSET 5
    # recommended format
    FORMAT 'bk_%s_%p_%t'
    DATABASE;
    sql 'alter system archive log current';
    RELEASE CHANNEL ch00;
    RELEASE CHANNEL ch01;
    # backup all archive logs
    ALLOCATE CHANNEL ch00 TYPE 'SBT_TAPE';
    ALLOCATE CHANNEL ch01 TYPE 'SBT_TAPE';
    BACKUP
    filesperset 20
    FORMAT 'al_%s_%p_%t'
    ARCHIVELOG ALL DELETE INPUT;
    RELEASE CHANNEL ch00;
    RELEASE CHANNEL ch01;
    and parameters;
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO 'SBT_TAPE';
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE SBT_TAPE TO '%F'; # deft
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE SBT_TAPE PARALLELISM 1; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE SBT_TAPE TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/opt/oracle/product/9.2.0/dbs/snapcf_trt

Maybe you are looking for

  • Layout option doesn't work in Easy Print VI panel, controls on tabs don't appear

    Found two problems with the Report Generation VIs: 1) In the (Report Generation) Easy Print VI Panel or Documentation.vi, the Layout options don't work (dug down into the sub-VI's and found that they are not connected to anything). 2) If you have con

  • SENDER JDBC ADAPTER ERROR

    Hi all, We are having an extrange problem. We are trying to read some info from an oracle Database, but we have always this error : Error: SQLException during query 'SELECT * FROM XX': java.sql.SQLException: ORA-00942: table or view does not exist: S

  • iMac (crt) forum is located ???

    Where did iMac crt forum go? (prev. forum was a breeze to find it) thx. tony

  • Usage of XMLFormatter?

    Hi, I'd like to use java.util.logging.XMLFormatter to output customized log. Anyone knows how to do it? The log I am getting. <?xml version="1.0" standalone="no"?> <!DOCTYPE log SYSTEM "logger.dtd"> <log> <record> <date>2001-10-23T11:25:37</date> <mi

  • Enter Key not working with Safari

    I have to use the return key for searches-the enter key is not working. I use Safari 5.1.7 OS 10.6.8 Is there I way to correct this. Thank you