RMAN-03002 RMAN Error !

Hello,For testing purposes I am duplicating my database from 11gR1 to 11gR2 on Windows XP.
The Oracle Sid of my database SOurce, which is in 11gR1 is : DB01.
The Oracle Sid of my auxiliary database , which is in 11gR2 is : DB02.
I am using RMAN for the duplication.
First of all, I have create a pfile from the DB01 and modified it as following :
*.audit_trail='DB_EXTENDED'
*.compatible='11.1.0.0.0'
*.control_files=('C:\app\werner\oradata\db02\CONTROL01.CTL','C:\app\werner\oradata\db02\CONTROL02.CTL','C:\app\werner\oradata\db02\CONTROL03.CTL')
*.db_file_name_convert=('F:\app\werner\oradata\db01','C:\app\werner\oradata\db02')
*.log_file_name_convert=('F:\app\werner\oradata\db01','C:\app\werner\oradata\db02')
*.db_block_size=8192
*.db_domain=''
*.db_name='db01'
*.db_recovery_file_dest_size=21474836480
*.dispatchers='(PROTOCOL=TCP) (SERVICE=db01XDB)'
*.memory_target=857735168
*.nls_numeric_characters=',.'
*.open_cursors=300
*.processes=150
*.remote_login_passwordfile='EXCLUSIVE'
*.undo_tablespace='UNDOTBS1'The I startup my DB02 in nomount state with :
startup nomount pfile=C:\app\werner\product\11.2.0\dbhome_1\pfile.orafrom RMAN :
I have backup the whole DB01 (the target database) database with Archivelog all. and connect to the auxiliary nomount DB02 database and
I issue the command duplicate target database to db01 but I have the following Error which means I think the auxiliary database stop at mount state
RMAN> duplicate target database to db01;
Iniciando Duplicate Db en 13/09/10
canal asignado: ORA_AUX_DISK_1
canal ORA_AUX_DISK_1: SID=10 tipo de dispositivo=DISK
contenido del archivo de comandos de memoria:
   set until scn  10225405;
   set newname for datafile  1 to
"C:\APP\WERNER\ORADATA\DB02\SYSTEM01.DBF";
   set newname for datafile  2 to
"C:\APP\WERNER\ORADATA\DB02\SYSAUX01.DBF";
   set newname for datafile  3 to
"C:\APP\WERNER\ORADATA\DB02\UNDOTBS01.DBF";
   set newname for datafile  4 to
"C:\APP\WERNER\ORADATA\DB02\USERS01.DBF";
   set newname for datafile  5 to
"C:\APP\WERNER\ORADATA\DB02\EXAMPLE01.DBF";
   set newname for datafile  6 to
"C:\APP\WERNER\ORADATA\DB02\DATA01.DBF";
   set newname for datafile  7 to
"C:\APP\WERNER\ORADATA\DB02\REPOSITORY_FOR_RMAN.DBF";
   restore
   clone database
ejecutando archivo de comandos de memoria
ejecutando el comando: SET until clause
ejecutando el comando: SET NEWNAME
ejecutando el comando: SET NEWNAME
ejecutando el comando: SET NEWNAME
ejecutando el comando: SET NEWNAME
ejecutando el comando: SET NEWNAME
ejecutando el comando: SET NEWNAME
ejecutando el comando: SET NEWNAME
Iniciando restore en 13/09/10
usando el canal ORA_AUX_DISK_1
canal ORA_AUX_DISK_1: iniciando restauraci¾n del juego de copias de seguridad de
archivos de datos
canal ORA_AUX_DISK_1: especificando archivo(s) de datos para restaurar del juego
de copias de seguridad
canal ORA_AUX_DISK_1: restaurando el archivo de datos 00001 a C:\APP\WERNER\O
RADATA\DB02\SYSTEM01.DBF
canal ORA_AUX_DISK_1: restaurando el archivo de datos 00002 a C:\APP\WERNER\O
RADATA\DB02\SYSAUX01.DBF
canal ORA_AUX_DISK_1: restaurando el archivo de datos 00003 a C:\APP\WERNER\O
RADATA\DB02\UNDOTBS01.DBF
canal ORA_AUX_DISK_1: restaurando el archivo de datos 00004 a C:\APP\WERNER\O
RADATA\DB02\USERS01.DBF
canal ORA_AUX_DISK_1: restaurando el archivo de datos 00005 a C:\APP\WERNER\O
RADATA\DB02\EXAMPLE01.DBF
canal ORA_AUX_DISK_1: restaurando el archivo de datos 00006 a C:\APP\WERNER\O
RADATA\DB02\DATA01.DBF
canal ORA_AUX_DISK_1: restaurando el archivo de datos 00007 a C:\APP\WERNER\O
RADATA\DB02\REPOSITORY_FOR_RMAN.DBF
canal ORA_AUX_DISK_1: leyendo desde la parte de copia de seguridad F:\APP\DB01\FLASH_RECOVERY_AREA\DB01\BACKUPSET\2010_09_13\O1_MF_NNNDF_TAG20100913T21141
8_68WY0CBQ_.BKP
canal ORA_AUX_DISK_1: manejador de parte=F:\APP\DB01\FLASH_RECOVERY_AREA\DB01\BACKUPSET\2010_09_13\O1_MF_NNNDF_TAG20100913T211418_68WY0CBQ_.BKP etiqueta=T
AG20100913T211418
canal ORA_AUX_DISK_1: parte 1 de la copia de seguridad restaurada
canal ORA_AUX_DISK_1: restauraci¾n terminada, tiempo transcurrido: 00:04:45
restore terminado en 13/09/10
sentencia sql: CREATE CONTROLFILE REUSE SET DATABASE "DB01" RESETLOGS ARCHIVE
LOG
  MAXLOGFILES     16
  MAXLOGMEMBERS      3
  MAXDATAFILES      100
  MAXINSTANCES     8
  MAXLOGHISTORY      292
LOGFILE
  GROUP  1 ( 'C:\APP\WERNER\ORADATA\DB02\REDO01.LOG' ) SIZE 50 M  REU
SE,
  GROUP  2 ( 'C:\APP\WERNER\ORADATA\DB02\REDO02.LOG' ) SIZE 50 M  REU
SE,
  GROUP  3 ( 'C:\APP\WERNER\ORADATA\DB02\REDO03.LOG' ) SIZE 50 M  REU
SE
DATAFILE
  'C:\APP\WERNER\ORADATA\DB02\SYSTEM01.DBF'
CHARACTER SET AL32UTF8
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-03002: fallo del comando Duplicate Db en 09/13/2010 21:21:29
RMAN-06136: error ORACLE en la base de datos auxiliar: ORA-01503: CREATE CONTROL
FILE ha fallado
ORA-01158: base de datos  ya montada
RMAN>
RMAN>Can you help me please,
Thank you

Hemant K Chitale wrote:
duplicate target database to db01That is wrong. you would be duplicating the target (db01) to the auxiliary (db02).
You have the database connections and command the wrong-way around.
Hemant K ChitaleIn have got this error now, using duplicate target database to db02;
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00601: fatal error in recovery manager
RMAN-03004: error fatal al ejecutar el comando
RMAN-10041: No se ha podido volver a crear el contexto del canal de sondeo despuÚs del fallo.
RMAN-10024: error al crear la configuraci¾n para el sondeo rpc
RMAN-10005: error al abrir el cursor
RMAN-10002: error ORACLE: ORA-03114: not connected to ORACLE
RMAN-03002: fallo del comando Duplicate Db en 09/14/2010 12:28:48
RMAN-03015: se ha producido un error en el archivo de comandos Memory Script almacenado
RMAN-06136: error ORACLE en la base de datos auxiliar: ORA-01092: ORACLE instance terminated. Disconnection
ORA-00704: bootstrap process failure
ORA-39700: database must be opened with UPGRADE option
Identificador de Proceso: 3696
Identificador de Sesi¾n: 125 N·mero de Serie: 9

Similar Messages

  • RMAN-06004:ORACLE error from recovery catalog ... ORA-00904: : invalid ...

    Good Morning All,
    One of our RMAN backups is failing with the following error message. Any suggestions would be greatly appreciated.
    ==================================================================================================
    Starting backup at 12/30/2008 22:03:47
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 12/30/2008 22:03:47
    RMAN-06004: ORACLE error from recovery catalog database: ORA-00904: : invalid identifier
    RMAN>
    RMAN> ##BACKUP ARCHIVELOG ALL FORMAT '%d_bkp_al_%t_Set%s_Piece%p' delete input;
    2>
    3> # DELETE ARCHIVELOG UNTIL TIME 'SYSDATE-7';
    4>
    5> # check if database can be restored
    6> # RESTORE DATABASE VALIDATE;
    7>
    8> # check if controlfile can be restored
    9> ##RESTORE CONTROLFILE to '/backups/admin/custpr/custpr_bkp_cntlfile.ctl' VALIDATE;
    10>
    11> # check if archivelogs for the past two weeks can be restored
    12> # RESTORE ARCHIVELOG FROM TIME 'SYSDATE-7' VALIDATE;
    13>
    14> # - Verify all backups on backup media are intact
    15> # CROSSCHECK BACKUP OF DATABASE;
    16>
    17> # - Display a list of files that need to be backed up based on the retention
    18> # policy. For this case study, files that don't have at least 1 backups
    19> # will be reported.
    20> REPORT NEED BACKUP;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to recovery window of 7 days
    Report of files whose recovery needs more than 7 days of archived logs
    File Days Name
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of report command at 12/30/2008 22:03:48
    RMAN-06004: ORACLE error from recovery catalog database: ORA-00904: : invalid identifier
    RMAN>
    RMAN> # - delete un-necessary backups. This command deletes backups based on the
    2> # retention policy.
    3> ######### commented out DELETE OBSOLETE - TSM not configured to delete on 68
    4> #########DELETE OBSOLETE;
    5>
    6> # - get complete list of existing backups
    7> LIST BACKUP;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of list command at 12/30/2008 22:03:49
    RMAN-06004: ORACLE error from recovery catalog database: ORA-00904: : invalid identifier
    RMAN>
    RMAN> #-end of file-
    2> **end-of-file**
    RMAN>
    Edited by: ORA_UMAIR on Dec 31, 2008 7:51 AM

    This Oracle Database is 9.2.0.6.0. Here is the complete log file. The RMAN script that I am using ran successfully many times before.
    ====================================================================================================
    Recovery Manager: Release 9.2.0.6.0 - 64bit Production
    Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
    RMAN>
    connected to recovery catalog database
    RMAN>
    connected to target database: CUSTPR (DBID=525071053)
    RMAN>
    RMAN> #########################################################################
    2> # LEVEL 0 BACKUP #
    3> #########################################################################
    4>
    5> # Configure backups to be written to disk.
    6> CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    old RMAN configuration parameters:
    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>
    RMAN> # Set the retention policy to a recovery window of 7 days. This ensures that
    2> # RMAN retains all backups needed to recover the database to any point in time
    3> # in the last 7 days. You can use the DELETE OBSOLETE command to delete
    4> # backups that are no longer required by the retention policy. To exclude a
    5> # backup from consideration by the policy, you can use KEEP option with the
    6> # BACKUP command.
    7> CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    old RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    new RMAN configuration parameters:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN>
    RMAN> # Configure RMAN to use two disk channels for backup, restore, recovery, and
    2> # maintenance operations.
    3> CONFIGURE DEVICE TYPE DISK PARALLELISM 1;
    old RMAN configuration parameters:
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1;
    new RMAN configuration parameters:
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1;
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN>
    RMAN> # Configure RMAN to write disk backups to the /backup directory.
    2> # The format specifier %t is replaced with a 4-byte timestamp, %s with the
    3> # backup set number, and %p with the backup piece number.
    4> CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/backups/admin/custpr/%d_bkp_df%t_Set%s_Piece%p';
    old RMAN configuration parameters:
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/backups/admin/custpr/%d_bkp_df%t_Set%s_Piece%p';
    new RMAN configuration parameters:
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/backups/admin/custpr/%d_bkp_df%t_Set%s_Piece%p';
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN>
    RMAN> # Configure RMAN to back up the control file after each backup.
    2> CONFIGURE CONTROLFILE AUTOBACKUP ON;
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN>
    RMAN> # Configure RMAN to write controlfile autobackups to the /backup directory.
    2> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/backups/admin/custpr/%d_bkp_cf%F';
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/backups/admin/custpr/%d_bkp_cf%F';
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/backups/admin/custpr/%d_bkp_cf%F';
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN>
    RMAN> # Enable the backup optimization feature introduced in 9i to make sure that
    2> # RMAN won't backup an archivelog or datafile if there already exists a backup
    3> # of that file. The FORCE option can be used to override optimization on a
    4> # specific BACKUP command.
    5> CONFIGURE BACKUP OPTIMIZATION ON;
    old RMAN configuration parameters:
    CONFIGURE BACKUP OPTIMIZATION ON;
    new RMAN configuration parameters:
    CONFIGURE BACKUP OPTIMIZATION ON;
    new RMAN configuration parameters are successfully stored
    starting full resync of recovery catalog
    full resync complete
    RMAN>
    RMAN> # Use the SHOW ALL command to see the current configuration settings.
    2> SHOW ALL ;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE 'SBT_TAPE' TO '%d_bkp_cf%F';
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/backups/admin/custpr/%d_bkp_cf%F';
    CONFIGURE DEVICE TYPE 'SBT_TAPE' PARALLELISM 1;
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1;
    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 CHANNEL DEVICE TYPE 'SBT_TAPE' FORMAT '%d_bkp_df%t_Set%s_Piece%p';
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/backups/admin/custpr/%d_bkp_df%t_Set%s_Piece%p';
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/orahome2/custprdb/9.2.0/dbs/snapcf_custpr.f'; # default
    RMAN>
    RMAN> # The following commands are run each day to start the backup cycle.
    2> # The steps are:
    3> # - Take an incremental level 0 backup of the database. A level 0 backup is
    4> # a complete backup of the entire file which can be used as the basis
    5> # for a subsequent incremental backup.
    6> # - Backup all archivelogs that have not already been backed up.
    7> # - Delete on-disk archivelogs older than seven days.
    8>
    9> BACKUP INCREMENTAL LEVEL 0 FORMAT '/backups/admin/custpr/%d_bkp_df%t_Set%s_Piece%p'
    10> DATABASE maxsetsize 33G
    11> PLUS ARCHIVELOG FORMAT '/backups/admin/custpr/%d_bkp_al%t_Set%s_Piece%p'
    12> delete all input;
    Starting backup at 12/30/2008 22:01:40
    current log archived
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=11 devtype=DISK
    channel ORA_DISK_1: starting archive log backupset
    channel ORA_DISK_1: specifying archive log(s) in backup set
    input archive log thread=1 sequence=8008 recid=7910 stamp=674638862
    input archive log thread=1 sequence=8009 recid=7911 stamp=674671207
    input archive log thread=1 sequence=8010 recid=7912 stamp=674697380
    input archive log thread=1 sequence=8011 recid=7913 stamp=674780433
    input archive log thread=1 sequence=8012 recid=7914 stamp=674784211
    input archive log thread=1 sequence=8013 recid=7915 stamp=674863288
    input archive log thread=1 sequence=8014 recid=7916 stamp=674863300
    channel ORA_DISK_1: starting piece 1 at 12/30/2008 22:01:41
    channel ORA_DISK_1: finished piece 1 at 12/30/2008 22:03:47
    piece handle=/backups/admin/custpr/CUSTPR_bkp_al674863300_Set3083_Piece1 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:02:07
    channel ORA_DISK_1: deleting archive log(s)
    archive log filename=/custpr/arch/arch_custpr_8008.log recid=7910 stamp=674638862
    archive log filename=/custpr/arch/arch_custpr_8009.log recid=7911 stamp=674671207
    archive log filename=/custpr/arch/arch_custpr_8010.log recid=7912 stamp=674697380
    archive log filename=/custpr/arch/arch_custpr_8011.log recid=7913 stamp=674780433
    archive log filename=/custpr/arch/arch_custpr_8012.log recid=7914 stamp=674784211
    archive log filename=/custpr/arch/arch_custpr_8013.log recid=7915 stamp=674863288
    archive log filename=/custpr/arch/arch_custpr_8014.log recid=7916 stamp=674863300
    Finished backup at 12/30/2008 22:03:47
    Starting backup at 12/30/2008 22:03:47
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 12/30/2008 22:03:47
    RMAN-06004: ORACLE error from recovery catalog database: ORA-00904: : invalid identifier
    RMAN>
    RMAN> ##BACKUP ARCHIVELOG ALL FORMAT '%d_bkp_al_%t_Set%s_Piece%p' delete input;
    2>
    3> # DELETE ARCHIVELOG UNTIL TIME 'SYSDATE-7';
    4>
    5> # check if database can be restored
    6> # RESTORE DATABASE VALIDATE;
    7>
    8> # check if controlfile can be restored
    9> ##RESTORE CONTROLFILE to '/backups/admin/custpr/custpr_bkp_cntlfile.ctl' VALIDATE;
    10>
    11> # check if archivelogs for the past two weeks can be restored
    12> # RESTORE ARCHIVELOG FROM TIME 'SYSDATE-7' VALIDATE;
    13>
    14> # - Verify all backups on backup media are intact
    15> # CROSSCHECK BACKUP OF DATABASE;
    16>
    17> # - Display a list of files that need to be backed up based on the retention
    18> # policy. For this case study, files that don't have at least 1 backups
    19> # will be reported.
    20> REPORT NEED BACKUP;
    RMAN retention policy will be applied to the command
    RMAN retention policy is set to recovery window of 7 days
    Report of files whose recovery needs more than 7 days of archived logs
    File Days Name
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of report command at 12/30/2008 22:03:48
    RMAN-06004: ORACLE error from recovery catalog database: ORA-00904: : invalid identifier
    RMAN>
    RMAN> # - delete un-necessary backups. This command deletes backups based on the
    2> # retention policy.
    3> ######### commented out DELETE OBSOLETE - TSM not configured to delete on 68
    4> #########DELETE OBSOLETE;
    5>
    6> # - get complete list of existing backups
    7> LIST BACKUP;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of list command at 12/30/2008 22:03:49
    RMAN-06004: ORACLE error from recovery catalog database: ORA-00904: : invalid identifier
    RMAN>
    RMAN> #-end of file-
    2> **end-of-file**
    RMAN>
    Recovery Manager complete.

  • EBS R11i  Rman DB backup error

    Hi Friends,
    platform AIX 5L
    I am backing up my EBS R11i database using RMAN but I got error.
    $ rman target /
    Recovery Manager: Release 9.2.0.6.0 - 64bit Production
    Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
    connected to target database: TEST (DBID=1969797320)
    RMAN> backup database;
    Starting backup at 10-DEC-08
    using target database controlfile instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=39 devtype=DISK
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 12/10/2008 15:17:06
    ORA-00600: internal error code, arguments: [525], [0x70000001137DD50], [5], [library cache], [5], [0x700000000025BF0], [device information], []
    ORA-27041: unable to open file
    IBM AIX RISC System/6000 Error: 25: Not a typewriter
    Additional information: 16
    RMAN> exit
    What file is RMAN opening here > ORA-27041: unable to open file
    Thanks a lot

    Please refer to Note: 262997.1 - ORA-600 [525] / [510] and ORA-27041 When Running RMAN Backup On IBM AIX Platform
    https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=262997.1

  • RMAN Active Database error

    Hello Team,
    I was doing ACTIVE DATABASE CLONING WHEN I NOTICED THIS ERROR:-
    released channel: t15
    released channel: t16
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 10/10/2012 18:50:41
    RMAN-05501: aborting duplication of target database
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-11003: failure during parse/execution of SQL statement: alter database recover logfile '/dupp3db/arch/dup3_1_145_794494895.arc'
    ORA-10877: error signaled in parallel recovery slave
    I went through a notr in metalink ( ID 1098638.1), but didn't able to resolve it not able to undetstand. Please suggest

    rman> list incarnation;
    rman> RESET DATABASE TO INCARNATION <x>;
    *X is the correct incarnation                                                                                                                                                                                                   

  • RMAN-03002: failure of Duplicate Db command at 06/01/2013 16:47:33

    sql statement: alter system reset db_unique_name scope=spfile
    Oracle instance shut down
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 06/01/2013 16:47:33
    RMAN-05501: aborting duplication of target database
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06053: unable to perform media recovery because of missing log
    RMAN-06025: no backup of archived log for thread 1 with sequence 8064 and starting SCN of 13048058320848 found to restore
    i am trying to duplicate a database, at the end it is getting finished with this error.
    can any one help me fixing this one?

    It is preferable to set an UNTIL point (to the latest available archivelog) when doing a DUPLICATE. Else, Oracle attempts a complete recovery and fails after the last archivelog it finds.
    Hemant K Chitale

  • RMAN-06136: ORACLE error from auxiliary database

    Dear All,
    When i start to recover a tablespace(TSPITR) using RMAN, getting below errors. Could any guide me
    RMAN-03002: failure of recover command at 02/07/2013 14:12:30
    RMAN-03015: error occurred in stored script Memory Script
    RMAN-06136: ORACLE error from auxiliary database: ORA-01119: error in creating database file '/rman/SHFLCLN/oradata'
    ORA-27056: could not delete file
    IBM AIX RISC System/6000 Error: 1: Not owner
    RMAN-06956: create datafile failed; retry after removing /rman/SHFLCLN/oradata from OS

    01119, 00000, "error in creating database file '%s'"
    // *Cause:  Usually due to not having enough space on the device.
    // *Action:                                                                                                                                                                                                                                                                       

  • RMAN Recover database error..

    Hi All,
    We were trying to restore and recover one of our databases. The restore went well but the recover is erroring out. Can someone please let us know what we should do to remedy this and carry on with the recovery.
    We got an error when we were trying to restore the controlfile at the begining (details below), but as you can see, it did manage to restore a copy of the controlfile successfully..
    Details below.
    C:\Users\oracle>rman target system/XXXX catalog rman/XXXX@rmancat
    Recovery Manager: Release 11.1.0.7.0 - Production on Thu Dec 2 08:31:03 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: CODP (not mounted)
    connected to recovery catalog database
    RMAN> set dbid=2399577932
    executing command: SET DBID
    database name is CODP and DBID is 2399577932
    RMAN> RESTORE CONTROLFILE;
    Starting restore at 02-DEC-10
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=152 device type=DISK
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\CONTROLFILE_BKUP_CODP_C-2399577932-20101201-00
    channel ORA_DISK_1: "ORA-19870: error while restoring backup piece D:\RMAN\CODP\CONTROLFILE_BKUP_CODP_C-2399577932-20101201-00"
    "ORA-19505: failed to identify file D:\RMAN\CODP\CONTROLFILE_BKUP_CODP_C-2399577932-20101201-00"
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    failover to previous backup
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_DULUG8H9_1_1
    channel ORA_DISK_1: "ORA-19870: error while restoring backup piece D:\RMAN\CODP\BKUP_CODP_DULUG8H9_1_1"
    "ORA-19505: failed to identify file D:\RMAN\CODP\BKUP_CODP_DULUG8H9_1_1"
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    failover to previous backup
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: restoring control file
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\CONTROLFILE_BKUP_CODP_C-2399577932-20101130-01
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\CONTROLFILE_BKUP_CODP_C-2399577932-20101130-01 tag=TAG20101130T204059
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    output file name=C:\ORACLE\ORADATA\CONTROLFILE\CODP\CONTROL01.CTL
    output file name=D:\ORACLE\ORADATA\CONTROLFILE\CODP\CONTROL02.CTL
    output file name=D:\ORACLE\ORADATA\CODP\CONTROL03.CTL
    Finished restore at 02-DEC-10
    RMAN> RESTORE SPFILE FROM AUTOBACKUP;
    Starting restore at 02-DEC-10
    using channel ORA_DISK_1
    recovery area destination: D:\oracle\flash_recovery_area\
    database name (or database unique name) used for search: CODP
    channel ORA_DISK_1: no AUTOBACKUPS found in the recovery area
    channel ORA_DISK_1: looking for AUTOBACKUP on day: 20101202
    channel ORA_DISK_1: looking for AUTOBACKUP on day: 20101201
    channel ORA_DISK_1: looking for AUTOBACKUP on day: 20101130
    channel ORA_DISK_1: AUTOBACKUP found: D:\RMAN\CODP\controlfile_bkup_CODP_c-2399577932-20101130-01
    channel ORA_DISK_1: restoring spfile from AUTOBACKUP D:\RMAN\CODP\controlfile_bkup_CODP_c-2399577932-20101130-01
    channel ORA_DISK_1: SPFILE restore from AUTOBACKUP complete
    Finished restore at 02-DEC-10
    RMAN> restore database;
    Starting restore at 02-DEC-10
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00020 to D:\ORACLE\ORADATA\CODP\VCLLOAD_T1.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_56LU9C9M_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_56LU9C9M_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:02:45
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00002 to D:\ORACLE\ORADATA\CODP\UNDOTBS01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_57LU9CFQ_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_57LU9CFQ_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:03:25
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00009 to D:\ORACLE\ORADATA\CODP\PROD_T3_NEW_02.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_58LU9CMS_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_58LU9CMS_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:55
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00010 to D:\ORACLE\ORADATA\CODP\PROD_T3_NEW_03.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_59LU9CR4_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_59LU9CR4_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:55
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00001 to D:\ORACLE\ORADATA\CODP\SYSTEM01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5ALU9CV2_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5ALU9CV2_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:45
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00005 to D:\ORACLE\ORADATA\CODP\PROD_T1_NEW_01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5BLU9D0P_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5BLU9D0P_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:15
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00006 to D:\ORACLE\ORADATA\CODP\PROD_T2_NEW_01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5CLU9D1J_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5CLU9D1J_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:45
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00007 to D:\ORACLE\ORADATA\CODP\PROD_T3_NEW_01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5DLU9D4T_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5DLU9D4T_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:55
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00025 to D:\ORACLE\ORADATA\CODP\PREV_PR_CODP_02.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5ELU9D79_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5ELU9D79_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:36
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00024 to D:\ORACLE\ORADATA\CODP\PREV_PR_CODP_01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5FLU9DAI_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5FLU9DAI_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:35
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00026 to D:\ORACLE\ORADATA\CODP\PREV_PR_CODP_03.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5GLU9DDI_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5GLU9DDI_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:35
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00027 to D:\ORACLE\ORADATA\CODP\PREV_PR_CODP_04.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5HLU9DGU_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5HLU9DGU_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:35
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00011 to D:\ORACLE\ORADATA\CODP\PROD_I3_16K_02.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5ILU9DJT_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5ILU9DJT_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:35
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00030 to D:\ORACLE\ORADATA\CODP\PREV_PR_CODP_07.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5JLU9DN8_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5JLU9DN8_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:46
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00028 to D:\ORACLE\ORADATA\CODP\PREV_PR_CODP_05.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5KLU9DOV_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5KLU9DOV_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:45
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00029 to D:\ORACLE\ORADATA\CODP\PREV_PR_CODP_06.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5LLU9DQO_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5LLU9DQO_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:45
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00003 to D:\ORACLE\ORADATA\CODP\SYSAUX01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5MLU9DSF_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5MLU9DSF_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:25
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00008 to D:\ORACLE\ORADATA\CODP\PROD_I2_16K_03.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5NLU9DT9_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5NLU9DT9_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:35
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00032 to D:\ORACLE\ORADATA\CODP\PROD_I2_16K_01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5OLU9DUN_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5OLU9DUN_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:55
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00033 to D:\ORACLE\ORADATA\CODP\PROD_I2_16K_02.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5PLU9E0P_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5PLU9E0P_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:05
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00034 to D:\ORACLE\ORADATA\CODP\PROD_I3_16K_01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_5QLU9E3F_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_5QLU9E3F_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:01:45
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00031 to D:\ORACLE\ORADATA\CODP\PROD_I1_16K_01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_8QLU9ES2_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_8QLU9ES2_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:35
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00004 to D:\ORACLE\ORADATA\CODP\USERS01.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_8SLU9ET9_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_8SLU9ET9_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    channel ORA_DISK_1: starting datafile backup set restore
    channel ORA_DISK_1: specifying datafile(s) to restore from backup set
    channel ORA_DISK_1: restoring datafile 00021 to D:\ORACLE\ORADATA\CODP\VCLLOAD_T2.DBF
    channel ORA_DISK_1: reading from backup piece D:\RMAN\CODP\BKUP_CODP_8ULU9ETF_1_1
    channel ORA_DISK_1: piece handle=D:\RMAN\CODP\BKUP_CODP_8ULU9ETF_1_1 tag=LEVEL0_TUE
    channel ORA_DISK_1: restored backup piece 1
    channel ORA_DISK_1: restore complete, elapsed time: 00:00:01
    Finished restore at 02-DEC-10
    RMAN> recover database;
    Starting recover at 02-DEC-10
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 12/02/2010 09:08:05
    ORA-00210: cannot open the specified control file
    RMAN>Thanks

    Sorry everyone.. My bad.. I forgot to MOUNT the instance before trying to use the RECOVER DATABASE command.
    Thanks

  • RMAN-03002: failure of recover command

    Hi all,
    I am testing a new backup and restore mechanism of a 11.2 system in Linux. A third mirror of the disks from the database server has been split and mounted in a media server. An RMAN backup was taken then, on tape, using HP Data Protector. Then, in the media server again, I mounted all the disk groups and removed all the files from ASM via asmcmd. With everything cleared, I proceeded in doing the following:
    1. Started up nomount using an old PFILE.
    2. Initiated an RMAN session and SET DBID, connected to the target and the catalog. Restore the SPFILE in a PFILE.
    3. Shutdow and started up nomount with PFILE the newly created file (edited it first to comment out CLUSTER_DATABASE parameter, as the media server is not configured for this).
    4. Restored the contorl file. This was done successfully.
    5. Restored the database. This was done successfully.
    6. Mounted the database and attempted to recover it. I received the following error:
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 07/12/2013 09:42:24
    RMAN-06094: datafile 1 must be restored
    7. I attempted a recover from SQL*Plus; the error message was a little more helpful:
    SQL> recover database using backup controlfile;
    ORA-00283: recovery session canceled due to errors
    ORA-01110: data file 1: '+BT1_A_SYSTEM/bt1_a/datafile/system.259.813148661'
    ORA-01157: cannot identify/lock data file 1 - see DBWR trace file
    ORA-01110: data file 1: '+BT1_A_SYSTEM/bt1_a/datafile/system.259.813148661'
    8. I checked my source database and the file name is as it appears above. But in the restored system, the file has a different name:
    ASMCMD> pwd
    +BT1_A_SYSTEM/BT1_A/DATAFILE
    ASMCMD> ls -l SYSTEM*
    Type      Redund  Striped  Time             Sys  Name
    DATAFILE  UNPROT  COARSE   JUL 11 16:00:00  Y    SYSTEM.257.820514399
    9. OK. I presume that this happened because we are using OMF. But, I was expecting RMAN to specify the full file names and thus restore them with their original names. The problem is now that the control file has the original file names, which cannot be found in the media server, where the restore took place. I am wondering if I should MOUNT the database after the control file restore and before I start the database restore, so RMAN might have the opportunity of renaming the file names in the control file.
    Has anyone encountered this problem? I would appreciate some help.
    Regards,
    Takis.

    That is correct Hemant. I latter realised my mistake.
    When I mounted the database, the control file was opened. Then I repeated the restore. RMAN, this time was able to access the control file and rename dynamically the files, as they were restored and getting their new names.
    So, I think, the correct sequence of events may be:
    1, Check in ASM if the disk groups are mounted (lsdg). If not, mount the disk groups (alter diskgroup <dg_name> mount;).
    2. Startup nomount (if no PFILE available, create a simple one with only db_name in it).
    3. From RMAN, set DBID and then connect to target and catalog.
    4. restore spfile to pfile from autobackup
    5. restore control file(s) from autobackup
    6. alter database mount
    7. restore database
    8. restore archivelog all
    9. recover database
    10. alter database open resetlogs
    In my case, this worked, by enslarge. RMAN stopped when it run out of archived redo logs.
    I then attempted, via SQL*Plus:
    recover database using backup controlfile until cancel
    When prompted, I typed: CANCEL
    That was fine, but then, when I attempted:
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-19809: limit exceeded for recovery files
    ORA-19804: cannot reclaim 525336576 bytes disk space from 2147483648 limit
    So, I needed to increase the parameter db_recovery_file_dest_size which I did (in the pfile; luckily I had available space in the disk group). I shut down and started up (mount). Then:
    SQL> alter database open resetlogs;
    alter database open resetlogs
    ERROR at line 1:
    ORA-00392: log 24 of thread 2 is being cleared, operation not allowed
    ORA-00312: online log 24 thread 2: '+BT1_A_RECO'
    So:
    SQL> alter database clear unarchived logfile group 24;
    Database altered.
    SQL> alter database open resetlogs;
    Database altered.
    SQL> select * from dual;
    D
    X
    Happy days!
    Regards,
    Takis.

  • Rman archivelog backup fails with rman-03002,ora-19563

    Hi,
    D:\ Oracle- -\BIN\RMAN TARGET / NOCATALOG
    RMAN> backup archivelog all;
    RMAN-03002: Error with backup command on 06-25-2013
    ORA-19563: Header-Validation is not successful.
        fails with the given errors.
    11.2.0.2 PROD DB on Windows Server 2008  R2 Enterpriise.
    When I issue BACKUP INCREMENTAL LEVEL 0 DATABASE; it works fine. but with archivelog it is creating problems. Unfortunatly, I have not found exactly the same problem on google and on Oracle support.
    The DB is using INIT.ORA and last time when I switched the mode to archive log mode I set the parameter like SCOPE=MEMORY as SPFILE was not in use and ALTER SYSTEM with SCOPE=BOTH  FRA destination and size, but after the DB restarting of course that setting is gone and I am having these problems.
    Please suggest.
    Thanks a lot.
    Best Regards,

    Hi,
    Thanks a lot.
    I don't think that archivelogs were relocated, except I changed the location yesterday.
    As I wrote at the start that because of INIT.ORA file being in use instead of SPFILE. I set DB_RECOVERY_FILE_DEST, DB_RECOVERY_DEST_SIZE after changing the DB mode to ARCHIVELOG, but DB was restarted by somebody else, and as the parameter changing was NOT PERMANENT, it rollback.
    LOG_ARCHIVE_DEST was set to d:\oradata\db with archivelog mode but db_recovery_file_dest and size was set to 0. Now here, I have no idea that whether archivelogs were not being backed up or deleted physically, but I guess that as log_archive_dest parameter is deprecated and mode is set to archivelog with no real ARCHIVELOG DESTINATION. Please correct me if I am wrong or totally wrong :-)
    I performed DELETED EXPIRED ARCHIVELOG ALL, and it deleted 49 EXPIRED objects.
    Now CROSSCHECK ARCHIVELOG ALL and LIST ARCHIVELOG ALL shows nothing.
    LIST BACKUP OF ARCHIVELOG ALL has of course those 49 archivelog gap.
    Could you please tell the impacts of those 49 missing archivelogs. Retention policy is set to 14 days. I mean the risk is for 14 days right? As anyhow, the older backups are being DELETED according to retention policy of RMAN.

  • RMAN-03002: failure of delete command

    DB:10.2.0.3.0
    OS:AIX 64 bits
    Hi All,
    We have configured backup default device on Disk.
    On using the command within run block:
    delete noprompt obsolete;
    We get the error:
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of delete command at 02/06/2009 11:07:04
    RMAN-06091: no channel allocated for maintenance (of an appropriate type)
    RMAN>
    Recovery Manager complete.
    Return Code: 1
    Now when we use the commmand :RMAN> delete noprompt obsolete device type disk;
    We do not get the above error.
    Question: Is it necessary to issue the command - "device type disk"; as above with "delete noprompt obsolete " though default backup device type is configured to DISK.Won't RMAN itself identify the default device type - Disk.
    Thanks for your time!
    Regards,

    RMAN> show all;
    starting full resync of recovery catalog
    full resync complete
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 7 DAYS;
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK;
    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 '/production_dump/database/EW01/Backup%d_DB_%u_%s_%p_%T';
    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 '/apps/ew01/oracle/10.2.0/dbs/snapcf_ew01.f'; # default
    RMAN>
    RMAN>

  • RMan and perflib error.

    We are running db backups every night using Legato and RecoveryManager.
    When running backup last night, Rman.exe hung with Dr.Watson error.
    Messages in alert file:
    Thu May 13 20:15:45 2004
    allocated device type: "SBT_TAPE", name: ""
    Thu May 13 20:15:47 2004
    allocated device type: "SBT_TAPE", name: ""
    Thu May 13 20:15:48 2004
    allocated device type: "SBT_TAPE", name: ""
    Thu May 13 20:15:49 2004
    allocated device type: "SBT_TAPE", name: ""
    Thu May 13 20:15:49 2004
    set limit for device type: "SBT_TAPE", name: ""
    device limit "k-bytes per piece" set to 2097160
    Thu May 13 20:15:49 2004
    set limit for device type: "SBT_TAPE", name: ""
    device limit "k-bytes per piece" set to 2097160
    Thu May 13 20:15:49 2004
    set limit for device type: "SBT_TAPE", name: ""
    device limit "k-bytes per piece" set to 2097160
    Thu May 13 20:15:49 2004
    set limit for device type: "SBT_TAPE", name: ""
    device limit "k-bytes per piece" set to 2097160
    Thu May 13 20:26:02 2004
    Errors in file D:\Oracle\admin\omss\rdbms80\trace\ORA00212.TRC:
    Ora00212.TRC:
    Dump file D:\Oracle\admin\omss\rdbms80\trace\ORA00212.TRC
    Thu May 13 20:26:02 2004
    ORACLE V8.0.5.2.1 - Production vsnsta=0
    vsnsql=c vsnxtr=3
    Windows NT V4.0, OS V5.101, CPU type 586
    Oracle8 Enterprise Edition Release 8.0.5.2.1 - Production
    With the Partitioning and Objects options
    PL/SQL Release 8.0.5.2.0 - Production
    Windows NT V4.0, OS V5.101, CPU type 586
    Instance name: omss
    Redo thread mounted by this instance: 1
    Oracle process number: 16
    pid: d4
    *** 2004.05.13.20.26.02.406
    *** SESSION ID:(25.14457) 2004.05.13.20.26.02.250
    FATAL ERROR IN TWO-TASK SERVER: error = 12571
    *** 2004.05.13.20.26.02.406
    ksedmp: internal or fatal error
    Current SQL statement for this session:
    select act from x$ksusex where sid=:1 and serial=:2
    ...followed by stack dump.
    I have also found a entry in application event viewer re:
    perflib, which occured just before RMan.exe error:
    "The Open Procedure for service "OracleOMSS_HOME80" in DLL "oraperf.dll" failed. Performance data for this service will not be available. Status code returned is DWORD 0."
    After dismissing Dr.Watson error this morning, backup run through with no problems.
    Excactly same situation occured last week.
    I cannot find any Rman error logs?
    Pls, any ideas or pointers would be appreciated!
    ania

    It is an interesting question how Oracle manages the undo for read-only.
    I might look at :
    ORA-1555 Using Automatic Undo Management - How to troubleshoot [ID 389554.1]
    or
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28310/undo002.htm#BJFFIACJ
    ORA-01555 "Snapshot too old" - Detailed Explanation [ID 40689.1]
    http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::p11_question_id:1441804355350
    Best Regards
    mseberg
    It is possible
    using target database control file instead of recovery catalog
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of list command at 02/24/2011 14:24:42
    ORA-01555: snapshot too old: rollback segment number 20 with name "_SYSSMU20_328
    6862503$" too small
    RMAN-06031: could not translate database keyword
    ORA-01555  Snapshot too old
    ORA-01555: snapshot too old
    h3. Would forget the why and fix the issue
    increase size of UNDOTBS1
    Edited by: mseberg on Nov 9, 2012 7:21 AM

  • RMAN:ORA-12640 ERROR when perform BRBACKUP

    I have scheduled the BRbackup job through DB13. But the job got the status: finished with error. And I checked the job as following(ECC 6/ABAP/):
    Recovery Manager: Release 10.2.0.2.0 - Production on Wed May 7 16:09:39
    2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    RMAN>
    RMAN> connect target *
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    ORA-12640: Authentication adapter initialization failed
    RMAN> *end-of-file*
    RMAN>
    host command complete
    RMAN> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19>
    20> 21> 22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37>
    38> 39> 40> 41> 42>
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of catalog command at 05/07/2008 16:09:42
    RMAN-06171: not connected to target database
    BTW, I also find the error in topic:
    Re: BRARCHIVE RMAN
    But the status of that topic is : not answered.
    So, I post the topic again.
    What can I do to fix this problem?
    Thanks in advance.

    Hi, Warren:
    Many thanks for your reply.
    1) I have added sapservice<SID> into adminstrator group and rerun the job, but I got the same error.
    2) how can I checked the user environment of user: sapservice<SID> since I can not login the system by user: sapservice<SID>, and I just login the system by <sid>adm.
    And the following is the detail job log of brbackup:
    BR0051I BRBACKUP 7.00 (32)
    BR0055I Start of database backup: bdxwdzzj.fnd 2008-05-07 14.45.35
    BR0484I BRBACKUP log file: K:\oracle\DEV\sapbackup\bdxwdzzj.fnd
    BR0477I Oracle pfile E:\oracle\DEV\102\database\initDEV.ora created from spfile E:\oracle\DEV\102\database\spfileDEV.ora
    BR0101I Parameters
    Name                           Value
    oracle_sid                     DEV
    oracle_home                    E:\oracle\DEV\102
    oracle_profile                 E:\oracle\DEV\102\database\initDEV.ora
    sapdata_home                   K:\oracle\DEV
    sap_profile                    E:\oracle\DEV\102\database\initdev.sap
    backup_mode                    FULL
    backup_type                    online
    backup_dev_type                disk
    backup_root_dir                W:\backup\DB
    compress                       no
    disk_copy_cmd                  copy
    cpio_disk_flags                -pdcu
    exec_parallel                  0
    system_info                    SAPServiceDEV CMPDEV01 Windows 5.2 Build 3790 Service Pack 2 AMD64
    oracle_info                    DEV 10.2.0.2.0 8192 403 29170522 CMPDEV01 UTF8 UTF8
    sap_info                       700 SAPSR3 0002LK0003DEV0011I09091536040013NetWeaver_ORA
    make_info                      NTAMD64 OCI_10201_SHARE Feb 11 2008
    command_line                   brbackup -u / -jid FLLOG20080507144500 -c force -t online -m full -p initdev.sap -a -c force -p initdev.sap -cds
    BR0116I ARCHIVE LOG LIST before backup for database instance DEV
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            N:\oracle\DEV\oraarch\DEVarch
    Archive format                 ARC%S_%R.%T
    Oldest online log sequence     400
    Next log sequence to archive   403
    Current log sequence           403              SCN: 29170522
    Database block size            8192             Thread: 1
    Current system change number   29228679         ResetId: 649858176
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize
    PSAPSR3        ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3_1\SR3.DATA1               2642419712    4           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3_2\SR3.DATA2               2663391232    5           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3               2684362752    6           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3_4\SR3.DATA4               2663391232    7           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3_5\SR3.DATA5               2621448192    8           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3_11\SR3.DATA11             2894077952   14          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3_12\SR3.DATA12             2789220352   15          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3_13\SR3.DATA13             2873106432   16          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3_14\SR3.DATA14             2915049472   17          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3_15\SR3.DATA15             2873106432   18          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3_16\SR3.DATA16             2852134912   19          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3_17\SR3.DATA17             2936020992   20          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3_18\SR3.DATA18             3019907072   21          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3_19\SR3.DATA19             2852134912   22          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3_20\SR3.DATA20             2894077952   23          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3_10\SR3.DATA10             2705334272   13          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3_6\SR3.DATA6               2726305792    9          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3_7\SR3.DATA7               2768248832   10          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3_8\SR3.DATA8               2663391232   11          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3_9\SR3.DATA9               2705334272   12          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3700_1\SR3700.DATA1         4445970432   24           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3700_2\SR3700.DATA2         4404027392   25           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3700_3\SR3700.DATA3         4383055872   26           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3700_4\SR3700.DATA4         4257226752   27           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3700_10\SR3700.DATA10       4571799552   33          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3700_11\SR3700.DATA11       4550828032   34          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3700_12\SR3700.DATA12       4362084352   35          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA3\SR3700_9\SR3700.DATA9         4613742592   32          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3700_13\SR3700.DATA13       4550828032   36          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3700_14\SR3700.DATA14       4676657152   37          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3700_15\SR3700.DATA15       4424998912   38          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   K:\ORACLE\DEV\SAPDATA4\SR3700_16\SR3700.DATA16       4424998912   39          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3700_5\SR3700.DATA5         4487913472   28          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3700_6\SR3700.DATA6         4257226752   29          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3700_7\SR3700.DATA7         3984596992   30          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE*    ONLINE+   N:\ORACLE\DEV\SAPDATA2\SR3700_8\SR3700.DATA8         3858767872   31          13  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3USR     ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SR3USR_1\SR3USR.DATA1           20979712   40           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPTEMP       ONLINE#    ONLINE+   J:\ORACLE\DEV\SAPDATA2\TEMP_1\TEMP.DATA1             2097160192   -1           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPUNDO       ONLINE-    ONLINE+   K:\ORACLE\DEV\SAPDATA3\UNDO_1\UNDO.DATA1             9248448512    2          10  NOLINK  FILE   10485760000     20971520     8192
    SYSAUX         ONLINE*    ONLINE+   J:\ORACLE\DEV\SAPDATA1\SYSAUX_1\SYSAUX.DATA1          230694912    3           9  NOLINK  FILE   10485760000     20971520     8192
    SYSTEM         ONLINE*    SYSTEM+   J:\ORACLE\DEV\SAPDATA1\SYSTEM_1\SYSTEM.DATA1          859840512    1           9  NOLINK  FILE   10485760000     20971520     8192
    BR0119I Redo log files
    File                                                Size  Group     Device  Status    Link    Type
    K:\ORACLE\DEV\MIRRLOGA\LOG_G11M2.DBF           524288512    1           10  INUSE     NOLINK  FILE
    J:\ORACLE\DEV\ORIGLOGA\LOG_G11M1.DBF           524288512    1            9  INUSE     NOLINK  FILE
    K:\ORACLE\DEV\MIRRLOGB\LOG_G12M2.DBF           524288512    2           10  INUSE     NOLINK  FILE
    J:\ORACLE\DEV\ORIGLOGB\LOG_G12M1.DBF           524288512    2            9  INUSE     NOLINK  FILE
    K:\ORACLE\DEV\MIRRLOGA\LOG_G13M2.DBF           524288512    3           10  INUSE     NOLINK  FILE
    J:\ORACLE\DEV\ORIGLOGA\LOG_G13M1.DBF           524288512    3            9  INUSE     NOLINK  FILE
    K:\ORACLE\DEV\MIRRLOGB\LOG_G14M2.DBF           524288512    4           10  INUSE     NOLINK  FILE
    J:\ORACLE\DEV\ORIGLOGB\LOG_G14M1.DBF           524288512    4            9  INUSE     NOLINK  FILE
    BR0120I Control files
    File                                                Size   Id.      Device  Link    Type
    J:\ORACLE\DEV\ORIGLOGB\CNTRL\CNTRLDEV.DBF       12664832    0            9  NOLINK  FILE
    BR0280I BRBACKUP time stamp: 2008-05-07 14.45.41
    BR0057I Backup of database: DEV
    BR0058I BRBACKUP action ID: bdxwdzzj
    BR0059I BRBACKUP function ID: fnd
    BR0110I Backup mode: FULL
    BR0077I Database file for backup: K:\oracle\DEV\sapbackup\CNTRLDEV.DBF
    BR0061I 41 files found for backup, total size 130052.391 MB
    BR0143I Backup type: online
    BR0112I Files will not be compressed
    BR0130I Backup device type: disk
    BR0106I Files will be saved on disk in directory: W:\backup\DB\bdxwdzzj
    BR0289I BRARCHIVE will be started at the end of processing
    BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    BR0370I Directory W:\backup\DB\bdxwdzzj created
    BR0202I Saving init_ora
    BR0203I to W:\backup\DB\DEV ...
    BR0202I Saving E:\oracle\DEV\102\database\initdev.sap
    BR0203I to W:\backup\DB\DEV ...
    BR0280I BRBACKUP time stamp: 2008-05-07 14.45.41
    BR0198I Profiles saved successfully
    BR0280I BRBACKUP time stamp: 2008-05-07 14.45.44
    BR0315I 'Alter tablespace PSAPSR3 begin backup' successful
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3_1\SR3.DATA1
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA1 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3_1\SR3.DATA1
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA1  #1/1
    BR0280I BRBACKUP time stamp: 2008-05-07 14.46.38
    BR0063I 1 of 40 files processed - 2520.008 MB of 130040.313 MB done
    BR0204I Percentage done: 1.94%, estimated end time: 15:34
    BR0001I *_________________________________________________
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3_2\SR3.DATA2
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA2 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3_2\SR3.DATA2
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA2  #1/2
    BR0280I BRBACKUP time stamp: 2008-05-07 14.48.51
    BR0063I 2 of 40 files processed - 5060.016 MB of 130040.313 MB done
    BR0204I Percentage done: 3.89%, estimated end time: 16:07
    BR0001I **________________________________________________
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA3 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3_3\SR3.DATA3
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA3  #1/3
    BR0280I BRBACKUP time stamp: 2008-05-07 14.49.46
    BR0063I 3 of 40 files processed - 7620.023 MB of 130040.313 MB done
    BR0204I Percentage done: 5.86%, estimated end time: 15:55
    BR0001I ***_______________________________________________
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3_4\SR3.DATA4
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA4 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3_4\SR3.DATA4
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA4  #1/4
    BR0280I BRBACKUP time stamp: 2008-05-07 14.52.04
    BR0063I 4 of 40 files processed - 10160.031 MB of 130040.313 MB done
    BR0204I Percentage done: 7.81%, estimated end time: 16:07
    BR0001I ****______________________________________________
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3_5\SR3.DATA5
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA5 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3_5\SR3.DATA5
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA5  #1/5
    BR0280I BRBACKUP time stamp: 2008-05-07 14.52.55
    BR0063I 5 of 40 files processed - 12660.039 MB of 130040.313 MB done
    BR0204I Percentage done: 9.74%, estimated end time: 15:59
    BR0001I *****_____________________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3_11\SR3.DATA11
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA11 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3_11\SR3.DATA11
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA11  #1/6
    BR0280I BRBACKUP time stamp: 2008-05-07 14.54.40
    BR0063I 6 of 40 files processed - 15420.047 MB of 130040.313 MB done
    BR0204I Percentage done: 11.86%, estimated end time: 16:01
    BR0001I ******____________________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3_12\SR3.DATA12
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA12 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3_12\SR3.DATA12
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA12  #1/7
    BR0280I BRBACKUP time stamp: 2008-05-07 14.56.16
    BR0063I 7 of 40 files processed - 18080.055 MB of 130040.313 MB done
    BR0204I Percentage done: 13.90%, estimated end time: 16:01
    BR0001I *******___________________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3_13\SR3.DATA13
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA13 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3_13\SR3.DATA13
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA13  #1/8
    BR0280I BRBACKUP time stamp: 2008-05-07 14.58.17
    BR0063I 8 of 40 files processed - 20820.063 MB of 130040.313 MB done
    BR0204I Percentage done: 16.01%, estimated end time: 16:04
    BR0001I ********__________________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3_14\SR3.DATA14
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA14 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3_14\SR3.DATA14
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA14  #1/9
    BR0280I BRBACKUP time stamp: 2008-05-07 15.00.17
    BR0063I 9 of 40 files processed - 23600.070 MB of 130040.313 MB done
    BR0204I Percentage done: 18.15%, estimated end time: 16:06
    BR0001I *********_________________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3_15\SR3.DATA15
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA15 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3_15\SR3.DATA15
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA15  #1/10
    BR0280I BRBACKUP time stamp: 2008-05-07 15.01.50
    BR0063I 10 of 40 files processed - 26340.078 MB of 130040.313 MB done
    BR0204I Percentage done: 20.26%, estimated end time: 16:05
    BR0001I **********________________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3_16\SR3.DATA16
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA16 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3_16\SR3.DATA16
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA16  #1/11
    BR0280I BRBACKUP time stamp: 2008-05-07 15.03.50
    BR0063I 11 of 40 files processed - 29060.086 MB of 130040.313 MB done
    BR0204I Percentage done: 22.35%, estimated end time: 16:06
    BR0001I ***********_______________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3_17\SR3.DATA17
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA17 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3_17\SR3.DATA17
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA17  #1/12
    BR0280I BRBACKUP time stamp: 2008-05-07 15.04.54
    BR0063I 12 of 40 files processed - 31860.094 MB of 130040.313 MB done
    BR0204I Percentage done: 24.50%, estimated end time: 16:04
    BR0001I ************______________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3_18\SR3.DATA18
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA18 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3_18\SR3.DATA18
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA18  #1/13
    BR0280I BRBACKUP time stamp: 2008-05-07 15.07.06
    BR0063I 13 of 40 files processed - 34740.102 MB of 130040.313 MB done
    BR0204I Percentage done: 26.71%, estimated end time: 16:05
    BR0001I *************_____________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3_19\SR3.DATA19
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA19 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3_19\SR3.DATA19
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA19  #1/14
    BR0280I BRBACKUP time stamp: 2008-05-07 15.08.44
    BR0063I 14 of 40 files processed - 37460.109 MB of 130040.313 MB done
    BR0204I Percentage done: 28.81%, estimated end time: 16:05
    BR0001I **************____________________________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3_20\SR3.DATA20
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA20 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3_20\SR3.DATA20
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA20  #1/15
    BR0280I BRBACKUP time stamp: 2008-05-07 15.10.47
    BR0063I 15 of 40 files processed - 40220.117 MB of 130040.313 MB done
    BR0204I Percentage done: 30.93%, estimated end time: 16:06
    BR0001I ***************___________________________________
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3_10\SR3.DATA10
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA10 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3_10\SR3.DATA10
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA10  #1/16
    BR0280I BRBACKUP time stamp: 2008-05-07 15.11.49
    BR0063I 16 of 40 files processed - 42800.125 MB of 130040.313 MB done
    BR0204I Percentage done: 32.91%, estimated end time: 16:05
    BR0001I ****************__________________________________
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3_6\SR3.DATA6
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA6 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3_6\SR3.DATA6
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA6  #1/17
    BR0280I BRBACKUP time stamp: 2008-05-07 15.13.43
    BR0063I 17 of 40 files processed - 45400.133 MB of 130040.313 MB done
    BR0204I Percentage done: 34.91%, estimated end time: 16:05
    BR0001I *****************_________________________________
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3_7\SR3.DATA7
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA7 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3_7\SR3.DATA7
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA7  #1/18
    BR0280I BRBACKUP time stamp: 2008-05-07 15.15.23
    BR0063I 18 of 40 files processed - 48040.141 MB of 130040.313 MB done
    BR0204I Percentage done: 36.94%, estimated end time: 16:06
    BR0001I ******************________________________________
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3_8\SR3.DATA8
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA8 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3_8\SR3.DATA8
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA8  #1/19
    BR0280I BRBACKUP time stamp: 2008-05-07 15.17.24
    BR0063I 19 of 40 files processed - 50580.148 MB of 130040.313 MB done
    BR0204I Percentage done: 38.90%, estimated end time: 16:07
    BR0001I *******************_______________________________
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3_9\SR3.DATA9
    BR0203I to W:\backup\DB\bdxwdzzj\SR3.DATA9 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3_9\SR3.DATA9
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3.DATA9  #1/20
    BR0280I BRBACKUP time stamp: 2008-05-07 15.19.01
    BR0063I 20 of 40 files processed - 53160.156 MB of 130040.313 MB done
    BR0204I Percentage done: 40.88%, estimated end time: 16:07
    BR0001I ********************______________________________
    BR0280I BRBACKUP time stamp: 2008-05-07 15.19.02
    BR0317I 'Alter tablespace PSAPSR3 end backup' successful
    BR0280I BRBACKUP time stamp: 2008-05-07 15.19.03
    BR0315I 'Alter tablespace PSAPSR3700 begin backup' successful
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3700_1\SR3700.DATA1
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA1 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3700_1\SR3700.DATA1
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA1  #1/21
    BR0280I BRBACKUP time stamp: 2008-05-07 15.21.55
    BR0063I 21 of 40 files processed - 57400.164 MB of 130040.313 MB done
    BR0204I Percentage done: 44.14%, estimated end time: 16:07
    BR0001I **********************____________________________
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3700_2\SR3700.DATA2
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA2 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3700_2\SR3700.DATA2
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA2  #1/22
    BR0280I BRBACKUP time stamp: 2008-05-07 15.24.44
    BR0063I 22 of 40 files processed - 61600.172 MB of 130040.313 MB done
    BR0204I Percentage done: 47.37%, estimated end time: 16:08
    BR0001I ************************__________________________
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3700_3\SR3700.DATA3
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA3 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3700_3\SR3700.DATA3
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA3  #1/23
    BR0280I BRBACKUP time stamp: 2008-05-07 15.27.24
    BR0063I 23 of 40 files processed - 65780.180 MB of 130040.313 MB done
    BR0204I Percentage done: 50.58%, estimated end time: 16:08
    BR0001I *************************_________________________
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3700_4\SR3700.DATA4
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA4 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3700_4\SR3700.DATA4
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA4  #1/24
    BR0280I BRBACKUP time stamp: 2008-05-07 15.29.43
    BR0063I 24 of 40 files processed - 69840.188 MB of 130040.313 MB done
    BR0204I Percentage done: 53.71%, estimated end time: 16:07
    BR0001I ***************************_______________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3700_10\SR3700.DATA10
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA10 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3700_10\SR3700.DATA10
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA10  #1/25
    BR0280I BRBACKUP time stamp: 2008-05-07 15.32.52
    BR0063I 25 of 40 files processed - 74200.195 MB of 130040.313 MB done
    BR0204I Percentage done: 57.06%, estimated end time: 16:08
    BR0001I *****************************_____________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3700_11\SR3700.DATA11
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA11 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3700_11\SR3700.DATA11
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA11  #1/26
    BR0280I BRBACKUP time stamp: 2008-05-07 15.35.56
    BR0063I 26 of 40 files processed - 78540.203 MB of 130040.313 MB done
    BR0204I Percentage done: 60.40%, estimated end time: 16:08
    BR0001I ******************************____________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3700_12\SR3700.DATA12
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA12 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3700_12\SR3700.DATA12
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA12  #1/27
    BR0280I BRBACKUP time stamp: 2008-05-07 15.38.39
    BR0063I 27 of 40 files processed - 82700.211 MB of 130040.313 MB done
    BR0204I Percentage done: 63.60%, estimated end time: 16:08
    BR0001I ********************************__________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\SR3700_9\SR3700.DATA9
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA9 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\SR3700_9\SR3700.DATA9
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA9  #1/28
    BR0280I BRBACKUP time stamp: 2008-05-07 15.41.21
    BR0063I 28 of 40 files processed - 87100.219 MB of 130040.313 MB done
    BR0204I Percentage done: 66.98%, estimated end time: 16:08
    BR0001I *********************************_________________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3700_13\SR3700.DATA13
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA13 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3700_13\SR3700.DATA13
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA13  #1/29
    BR0280I BRBACKUP time stamp: 2008-05-07 15.43.46
    BR0063I 29 of 40 files processed - 91440.227 MB of 130040.313 MB done
    BR0204I Percentage done: 70.32%, estimated end time: 16:08
    BR0001I ***********************************_______________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3700_14\SR3700.DATA14
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA14 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3700_14\SR3700.DATA14
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA14  #1/30
    BR0280I BRBACKUP time stamp: 2008-05-07 15.46.54
    BR0063I 30 of 40 files processed - 95900.234 MB of 130040.313 MB done
    BR0204I Percentage done: 73.75%, estimated end time: 16:08
    BR0001I *************************************_____________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3700_15\SR3700.DATA15
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA15 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3700_15\SR3700.DATA15
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA15  #1/31
    BR0280I BRBACKUP time stamp: 2008-05-07 15.49.54
    BR0063I 31 of 40 files processed - 100120.242 MB of 130040.313 MB done
    BR0204I Percentage done: 76.99%, estimated end time: 16:09
    BR0001I **************************************____________
    BR0202I Saving K:\ORACLE\DEV\SAPDATA4\SR3700_16\SR3700.DATA16
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA16 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA4\SR3700_16\SR3700.DATA16
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA16  #1/32
    BR0280I BRBACKUP time stamp: 2008-05-07 15.52.23
    BR0063I 32 of 40 files processed - 104340.250 MB of 130040.313 MB done
    BR0204I Percentage done: 80.24%, estimated end time: 16:08
    BR0001I ****************************************__________
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3700_5\SR3700.DATA5
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA5 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3700_5\SR3700.DATA5
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA5  #1/33
    BR0280I BRBACKUP time stamp: 2008-05-07 15.54.58
    BR0063I 33 of 40 files processed - 108620.258 MB of 130040.313 MB done
    BR0204I Percentage done: 83.53%, estimated end time: 16:08
    BR0001I ******************************************________
    BR0348I Following file has been extended by database: N:\ORACLE\DEV\SAPDATA2\SR3700_5\SR3700.DATA5 4508884992
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3700_6\SR3700.DATA6
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA6 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3700_6\SR3700.DATA6
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA6  #1/34
    BR0280I BRBACKUP time stamp: 2008-05-07 15.57.42
    BR0063I 34 of 40 files processed - 112680.266 MB of 130040.313 MB done
    BR0204I Percentage done: 86.65%, estimated end time: 16:08
    BR0001I *******************************************_______
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3700_7\SR3700.DATA7
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA7 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3700_7\SR3700.DATA7
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA7  #1/35
    BR0280I BRBACKUP time stamp: 2008-05-07 16.00.15
    BR0063I 35 of 40 files processed - 116480.273 MB of 130040.313 MB done
    BR0204I Percentage done: 89.57%, estimated end time: 16:08
    BR0001I *********************************************_____
    BR0202I Saving N:\ORACLE\DEV\SAPDATA2\SR3700_8\SR3700.DATA8
    BR0203I to W:\backup\DB\bdxwdzzj\SR3700.DATA8 ...
    #FILE..... N:\ORACLE\DEV\SAPDATA2\SR3700_8\SR3700.DATA8
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3700.DATA8  #1/36
    BR0280I BRBACKUP time stamp: 2008-05-07 16.02.41
    BR0063I 36 of 40 files processed - 120160.281 MB of 130040.313 MB done
    BR0204I Percentage done: 92.40%, estimated end time: 16:09
    BR0001I **********************************************____
    BR0280I BRBACKUP time stamp: 2008-05-07 16.02.43
    BR0317I 'Alter tablespace PSAPSR3700 end backup' successful
    BR0280I BRBACKUP time stamp: 2008-05-07 16.02.43
    BR0315I 'Alter tablespace PSAPSR3USR begin backup' successful
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SR3USR_1\SR3USR.DATA1
    BR0203I to W:\backup\DB\bdxwdzzj\SR3USR.DATA1 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SR3USR_1\SR3USR.DATA1
    #SAVED.... W:\backup\DB\bdxwdzzj\SR3USR.DATA1  #1/37
    BR0280I BRBACKUP time stamp: 2008-05-07 16.02.45
    BR0063I 37 of 40 files processed - 120180.289 MB of 130040.313 MB done
    BR0204I Percentage done: 92.42%, estimated end time: 16:09
    BR0001I **********************************************____
    BR0280I BRBACKUP time stamp: 2008-05-07 16.02.45
    BR0317I 'Alter tablespace PSAPSR3USR end backup' successful
    BR0280I BRBACKUP time stamp: 2008-05-07 16.02.46
    BR0315I 'Alter tablespace PSAPUNDO begin backup' successful
    BR0202I Saving K:\ORACLE\DEV\SAPDATA3\UNDO_1\UNDO.DATA1
    BR0203I to W:\backup\DB\bdxwdzzj\UNDO.DATA1 ...
    #FILE..... K:\ORACLE\DEV\SAPDATA3\UNDO_1\UNDO.DATA1
    #SAVED.... W:\backup\DB\bdxwdzzj\UNDO.DATA1  #1/38
    BR0280I BRBACKUP time stamp: 2008-05-07 16.08.35
    BR0063I 38 of 40 files processed - 129000.297 MB of 130040.313 MB done
    BR0204I Percentage done: 99.20%, estimated end time: 16:09
    BR0001I **************************************************
    BR0280I BRBACKUP time stamp: 2008-05-07 16.08.46
    BR0317I 'Alter tablespace PSAPUNDO end backup' successful
    BR0280I BRBACKUP time stamp: 2008-05-07 16.08.47
    BR0315I 'Alter tablespace SYSAUX begin backup' successful
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SYSAUX_1\SYSAUX.DATA1
    BR0203I to W:\backup\DB\bdxwdzzj\SYSAUX.DATA1 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SYSAUX_1\SYSAUX.DATA1
    #SAVED.... W:\backup\DB\bdxwdzzj\SYSAUX.DATA1  #1/39
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.03
    BR0063I 39 of 40 files processed - 129220.305 MB of 130040.313 MB done
    BR0204I Percentage done: 99.37%, estimated end time: 16:09
    BR0001I **************************************************
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.04
    BR0317I 'Alter tablespace SYSAUX end backup' successful
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.11
    BR0315I 'Alter tablespace SYSTEM begin backup' successful
    BR0202I Saving J:\ORACLE\DEV\SAPDATA1\SYSTEM_1\SYSTEM.DATA1
    BR0203I to W:\backup\DB\bdxwdzzj\SYSTEM.DATA1 ...
    #FILE..... J:\ORACLE\DEV\SAPDATA1\SYSTEM_1\SYSTEM.DATA1
    #SAVED.... W:\backup\DB\bdxwdzzj\SYSTEM.DATA1  #1/40
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.29
    BR0063I 40 of 40 files processed - 130040.313 MB of 130040.313 MB done
    BR0204I Percentage done: 100.00%, estimated end time: 16:09
    BR0001I **************************************************
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.29
    BR0317I 'Alter tablespace SYSTEM end backup' successful
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.34
    BR0530I Cataloging backups of all database files...
    BR0278E Command output of 'E:\oracle\DEV\102\BIN\rman nocatalog':
    Recovery Manager: Release 10.2.0.2.0 - Production on Wed May 7 16:09:39 2008
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    RMAN>
    RMAN> connect target *
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    ORA-12640: Authentication adapter initialization failed
    RMAN> *end-of-file*
    RMAN>
    host command complete
    RMAN> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19> 20> 21> 22> 23> 24> 25> 26> 27> 28> 29> 30> 31> 32> 33> 34> 35> 36> 37> 38> 39> 40> 41> 42>
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of catalog command at 05/07/2008 16:09:42
    RMAN-06171: not connected to target database
    RMAN>
    Recovery Manager complete.
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.42
    BR0279E Return code from 'E:\oracle\DEV\102\BIN\rman nocatalog': 1
    BR0536E RMAN call for database instance DEV failed
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.42
    BR0532E Cataloging backups of all database files failed
    BR0056I End of database backup: bdxwdzzj.fnd 2008-05-07 16.09.42
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.48
    BR0054I BRBACKUP terminated with errors
    BR0280I BRBACKUP time stamp: 2008-05-07 16.09.48
    BR0291I BRARCHIVE will be started with options '-U -jid FLLOG20080507144500 -d disk -c force -p initdev.sap -cds'
    BR0280I BRBACKUP time stamp: 2008-05-07 16.10.26
    BR0292I Execution of BRARCHIVE finished with return code 3

  • Rman standby database error

    Hi All,
    I am getting the following error when trying to CONFIGURE STANDBY database using rman,db version 10.2.0.2(HP-UX 11.2),library link seems to be fine.
    do i have to relink the library to oracle on the stanby db host too? any suggestion please.
    connect target / catalog rman@xx auxiliary sys@aux
    RMAN> run {
    allocate channel c1 device type 'sbt_tape';
    ALLOCATE AUXILIARY CHANNEL aux1 DEVICE TYPE 'SBT_TAPE';
    duplicate target database for standby dorecover;}2> 3> 4>
    allocated channel: c1
    channel c1: sid=164 instance=WWPODSP1 devtype=SBT_TAPE
    channel c1: Data Protector A.06.00/331
    released channel: c1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of allocate command on aux1 channel at 05/09/2007 16:57:07
    ORA-19554: error allocating device, device type: SBT_TAPE, device name:
    ORA-27211: Failed to load Media Management Library
    Additional information: 11
    RMAN> show all;
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 45 DAYS;
    CONFIGURE BACKUP OPTIMIZATION ON;
    CONFIGURE DEFAULT DEVICE TYPE TO 'SBT_TAPE';
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE 'SBT_TAPE' TO 'control_file_%F';
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE SBT_TAPE PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO BACKUPSET; # 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 CHANNEL DEVICE TYPE 'SBT_TAPE' PARMS 'SBT_LIBRARY=/opt/omni/lib/libob2oracle8_64bit.so';
    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 '/u01/app/oracle/product/10.2.0/db_1/dbs/snapcf_WWPODSP1.f'; # default

    sorry here is the exact commands.
    rman TARGET / AUXILIARY sys/xxx@WWPODSS catalog rman@rman
    Recovery Manager: Release 10.2.0.2.0 - Production on Wed May 9 17:29:37 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database: WWPODSP (DBID=669261963)
    recovery catalog database Password:
    connected to recovery catalog database
    connected to auxiliary database: WWPODSP (not mounted)
    RMAN> run
    2> {
    3> duplicate target database for standby dorecover;}
    Starting Duplicate Db at 09-MAY-07
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 05/09/2007 17:33:35
    ORA-19554: error allocating device, device type: SBT_TAPE, device name:
    ORA-27211: Failed to load Media Management Library
    Additional information: 11
    RMAN>

  • RMAN-01009: syntax error: found "cancel"

    Hi!
    I am playing with rman on my test machine and I encountered error that I can't resolve.
    I've tried to restore/recover datafiles executing this commands:
    $ sqlplus "/as sysdba"
    SQL>startup mount
    RMAN> restore database
    (everything went well)
    RMAN> recover database until cancel;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "cancel": expecting one of: "logseq, scn, sequence, time"
    RMAN-01007: at line 1 column 24 file: standard input
    I've executed this command on several occasions and never had a problem, but now syntax error.
    Just don't know why syntax error?!
    OS: Centos 5
    DB: 11.1.0.7.0
    Thanks for any help,
    Marko

    RMAN> alter database recover database using backup controlfile until cancel;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "recover": expecting one of: "mount, open"
    RMAN-01007: at line 1 column 16 file: standard input
    RMAN> recover database;
    Starting recover at 05-FEB-09
    using channel ORA_DISK_1
    starting media recovery
    media recovery failed
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 02/05/2009 00:11:30
    ORA-00283: recovery session canceled due to errors
    RMAN-11003: failure during parse/execution of SQL statement: alter database recover if needed
    start
    ORA-00283: recovery session canceled due to errors
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: '/oradata/testdb/redo/testdb/onlinelog/o1_mf_3_4qfwj5fn_.log'
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    I am trying to execute:
    RMAN> sql 'alter database open resetlogs';
    sql statement: alter database open resetlogs
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of sql command on default channel at 02/05/2009 00:09:18
    RMAN-11003: failure during parse/execution of SQL statement: alter database open resetlogs
    ORA-01139: RESETLOGS option only valid after an incomplete database recovery
    This is the reason why I am trying to execute cancel-based recovery.

  • RMAN-05001 - RMAN-03002 | Duplicating Database fails | Redo-Logs

    Sorry guys,
    first of all...my english is the worsteds you´ve ever seen...
    I got some kind of problem using rman duplicating a DB called cs2t into cs2b.
    Starting Duplicate Db at 17.05.2006 07:54:10
    released channel: t1
    released channel: t2
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of Duplicate Db command at 05/17/2006 07:54:10
    RMAN-05501: aborting duplication of target database
    RMAN-05001: auxiliary filename /oracle/orasys/cs2t/redo05.log conflicts with a file used by the target database
    RMAN-05001: auxiliary filename /oracle/orasys/cs2t/redo04.log conflicts with a file used by the target database
    RMAN-05001: auxiliary filename /oracle/orasys/cs2t/redo03.log conflicts with a file used by the target database
    RMAN-05001: auxiliary filename /oracle/orasys/cs2t/redo02.log conflicts with a file used by the target database
    RMAN-05001: auxiliary filename /oracle/orasys/cs2t/redo01.log conflicts with a file used by the target database
    Recovery Manager complete.
    Therefore I found on metalink some informations about using UNTIL TIME.
    I´ve tryed it....but now...there are some other erros on my rman.log
    executing command: SET until clause
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of set command at 05/17/2006 08:22:14
    ORA-01830: date format picture ends before converting entire input string
    Recovery Manager complete.
    and now: no ideas anymore...i´ve googled for it about 3hours...nothing found....may anybody help me - please?
    P.S. I hope you´ll understand anything i´ve wrote into this message ;-)

    hi,
    you have to use db_file_name_convert and db_log-filename_convert parameter in the auxiliary database parameter file and use nofilenamecheck parameter with the duplicate command.
    This is also recommended that you create new redo og files for auxiliary databse just like --
    RMAN> run{
    2> allocate auxiliary channel c1 device type disk;
    3> duplicate target database to prod1 pfile='c:\oracle\ora92\database\initprod1.ora'
    4> logfile 'c:\oracle\oradata\prod1\redo01.log' size 50m,
    5> 'c:\oracle\oradata\prod1\redo02.log' size 50m,
    6> 'c:\oracle\oradata\prod1\redo03.log' size 50m ;}
    i hope it solve your problem..
    Navneet

Maybe you are looking for