RMAN and Begin backup mode

Hi guys I have a couple of questiopns...

I want to know if data is written to the DBWR data files when the data file is starting in backup mode.

What is the difference in the creation of archive log during normal operation of a database and a database for the RMAN backup operating?

user13087302 wrote:

Normally, Oracle should write that change in redolog files. But if the tablespace is in backup mode, then entire block will be set redolog as soon as this change is 1 took place on this block after activating the backup mode. Therefore, we log redo generation face massive if the tablespace in backup mode. So, logically you should be able to recover to the last CNS you have in hands.

What do you mean by the last SNA. Does the SNA before putting the tablespace in backup mode? Does present data in other files will be also lost, even if they are written in the data files...

PLS, look at:

SQL> create tablespace myts1 datafile 'C:\app\oracle\oradata\testdb\myts1.dbf' size 10m;

Tablespace created.

SQL> create tablespace myts2 datafile 'C:\app\oracle\oradata\testdb\myts2.dbf' size 10m;

Tablespace created.

SQL> create table myt1 tablespace myts1 as select * from dba_objects where rownum<10001;

Table created.

SQL> create table myt2 tablespace myts2 as select * from dba_objects where rownum<10001;

Table created.

SQL> alter tablespace myts1 begin backup;

Tablespace altered.

SQL> create table myt1_1 tablespace myts1 as select * from dba_objects where rownum<10001; 

Table created.

SQL> create table myt2_1 tablespace myts2 as select * from dba_objects where rownum<10001;

Table created.

SQL> create table myt1_3 tablespace myts1 as select * from dba_objects where rownum<10001;

Table created.

Backup database:

C:\Documents and Settings\Administrator>rman target /

Recovery Manager: Release 11.2.0.1.0 - Production on Wed Nov 3 15:46:55 2010

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

connected to target database: TESTDB (DBID=2517263760)

RMAN> backup database;

Starting backup at 03-NOV-10

using target database control file instead of recovery catalog

allocated channel: ORA_DISK_1

channel ORA_DISK_1: SID=44 device type=DISK

channel ORA_DISK_1: starting full datafile backup set

channel ORA_DISK_1: specifying datafile(s) in backup set

input datafile file number=00001 name=C:\APP\ORACLE\ORADATA\TESTDB\SYSTEM01.DBF
input datafile file number=00002 name=C:\APP\ORACLE\ORADATA\TESTDB\SYSAUX01.DBF
input datafile file number=00003 name=C:\APP\ORACLE\ORADATA\TESTDB\UNDOTBS01.DBF
input datafile file number=00005 name=C:\APP\ORACLE\ORADATA\TESTDB\EXAMPLE01.DBF
input datafile file number=00006 name=C:\APP\ORACLE\ORADATA\TESTDB\MYTS1.DBF
input datafile file number=00007 name=C:\APP\ORACLE\ORADATA\TESTDB\MYTS2.DBF
input datafile file number=00004 name=C:\APP\ORACLE\ORADATA\TESTDB\USERS01.DBF

channel ORA_DISK_1: starting piece 1 at 03-NOV-10
channel ORA_DISK_1: finished piece 1 at 03-NOV-10

piece handle=C:\APP\ORACLE\FLASH_RECOVERY_AREA\PRIM_DB\BACKUPSET\2010_11_03\O1_MF_NNNDF_TAG20101103T154701_6F2LXQ5C_.BKP tag=TAG20101103T154701 comment=NONE

channel ORA_DISK_1: backup set complete, elapsed time: 00:01:35
channel ORA_DISK_1: starting full datafile backup set
channel ORA_DISK_1: specifying datafile(s) in backup set
including current control file in backup set
including current SPFILE in backup set
channel ORA_DISK_1: starting piece 1 at 03-NOV-10
channel ORA_DISK_1: finished piece 1 at 03-NOV-10
piece handle=C:\APP\ORACLE\FLASH_RECOVERY_AREA\PRIM_DB\BACKUPSET\2010_11_03\O1_MF_NCSNF_TAG20101103T154701_6F2M0PJ3_.BKP tag=TAG20101103T154701 comment=NONE
channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
Finished backup at 03-NOV-10

Recovery Manager complete.
SQL> select current_scn from v$database;

CURRENT_SCN

-----------

    1466019

SQL> drop table myt1_3 purge;

Table dropped.

Thus, we abandoned table MYT1_3 and now trying to incomplete recovery.

SQL> shutdown abort;

ORACLE instance shut down.

SQL> startup mount;

ORACLE instance started.

Total System Global Area  431038464 bytes

Fixed Size                  1375088 bytes

Variable Size             322962576 bytes

Database Buffers          100663296 bytes

Redo Buffers                6037504 bytes

Database mounted.
C:\Documents and Settings\Administrator>rman target /

Recovery Manager: Release 11.2.0.1.0 - Production on Wed Nov 3 15:51:51 2010
Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
connected to target database: TESTDB (DBID=2517263760, not open)

RMAN> run

2> {

3> set until scn 1466019;

4> restore database;

5> recover database;

6> sql 'alter database open resetlogs';

7> }

executing command: SET until clause

Starting restore at 03-NOV-10

using target database control file instead of recovery catalog

allocated channel: ORA_DISK_1

channel ORA_DISK_1: SID=20 device type=DISK

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 C:\APP\ORACLE\ORADATA\TESTDB\SYS

TEM01.DBF

channel ORA_DISK_1: restoring datafile 00002 to C:\APP\ORACLE\ORADATA\TESTDB\SYSAUX01.DBF

channel ORA_DISK_1: restoring datafile 00003 to C:\APP\ORACLE\ORADATA\TESTDB\UNDOTBS01.DBF

channel ORA_DISK_1: restoring datafile 00004 to C:\APP\ORACLE\ORADATA\TESTDB\USERS01.DBF

channel ORA_DISK_1: restoring datafile 00005 to C:\APP\ORACLE\ORADATA\TESTDB\EXAMPLE01.DBF

channel ORA_DISK_1: restoring datafile 00006 to C:\APP\ORACLE\ORADATA\TESTDB\MYTS1.DBF

channel ORA_DISK_1: restoring datafile 00007 to C:\APP\ORACLE\ORADATA\TESTDB\MYTS2.DBF

channel ORA_DISK_1: reading from backup piece C:\APP\ORACLE\FLASH_RECOVERY_AREA\

PRIM_DB\BACKUPSET\2010_11_03\O1_MF_NNNDF_TAG20101103T154701_6F2LXQ5C_.BKP

channel ORA_DISK_1: piece handle=C:\APP\ORACLE\FLASH_RECOVERY_AREA\PRIM_DB\BACKUPSET\2010_11_03\O1_MF_NNNDF_TAG20101103T154701_6F2LXQ5C_.BKP tag=TAG20101103T154701

channel ORA_DISK_1: restored backup piece 1

channel ORA_DISK_1: restore complete, elapsed time: 00:01:45

Finished restore at 03-NOV-10 

Starting recover at 03-NOV-10

using channel ORA_DISK_1 

starting media recovery

media recovery complete, elapsed time: 00:00:03 

Finished recover at 03-NOV-10 

sql statement: alter database open resetlogs

RMAN>

Now, the tables:

SQL> select count(*) from myt1;

  COUNT(*)

----------

     10000

SQL> select count(*) from myt2;

   COUNT(*)

----------

     10000

SQL> select count(*) from myt1_3;

  COUNT(*)

----------

     10000

SQL> select count(*) from myt2_1;

  COUNT(*)

----------

     10000

Thus, it does not matter what is the status of any tablespace: backup or no mode. Incomplete recovery using archivelogs + redologs.

Tags: Database

Similar Questions

  • What do I need to use the database shall begin backup mode to perform the backup?

    Hi all

    I have a primary database to 10g (10.2.0.4) with intelligence on a solaris platform. I need to create a different primary eve for the same database.

    I stopped the recovery based on standby and began copy (copy of the os) the existing files pending at the 2nd backup server. But I didn't keep the (mounted) existing standby database into begin backup mode. Is this right?

    Thank you

    Arun

    For a mounted database backup mode?

    orclz >

    orclz > startup mount

    ORACLE instance started.

    Total System Global Area 788529152 bytes

    Bytes of size 3050600 fixed

    373293976 variable size bytes

    406847488 of database buffers bytes

    Redo buffers 5337088 bytes

    Mounted database.

    orclz >

    orclz > alter database begin backup;

    ALTER database begin backup

    *

    ERROR on line 1:

    ORA-01109: database is not open

    orclz >

  • ALTER TABLESPACE BEGIN BACKUP MODE

    Hi all
    When we issue alter tablespace begin backup command then freezes the data file headers and all modified blocks will be written to streams and when we issue end backup command then the database will write the blocks changed to data files by accessing files redo.
    my doubt is suppose archiver process archive redo files and all redo files are overwritten. now how the database will write the changed blocks to restore and database dealing with this task.

    TIA

    "Hot backup" is obsolete with 10g or more recent technology as Rman covers this much better.
    Please switch to RMAN at your early convenience.

    Also, as the database must be in archivelog backup online, it is not a problem, that the online redo log files are overwritten, like recovery will use two online redolog files and archived.
    Your question doesn't make sense to me.
    Redo are written in files LGWR, ARCH Archive files. Changes are written to the database by DBWR. All who are independent processes, and the changes are written to redo front to be written to the database.

    ----------
    Sybrand Bakker
    Senior Oracle DBA

  • Full RMAN and Archivelog backups

    I'm scripting rman of my stuff and it is a much larger part of an interview of Perl. I have all night and schedules of jobs. Every night will make a full and hourly backup will do archivelog backup. Full backups take about 2-3 hours.
    My question is: is there a problem with running in archivelog backups run while I do a full backup. If the system resources are not a problem, what are some arguments for or against?

    One of two simultaneous backups can sometimes fail with

    "ORA-00230: forbidden operation: snapshot control file queue unavailable."

    When you attempt to update the controlfile.

    Hemant K Collette
    http://hemantoracledba.blogspot.com

  • RMAN and consistent backup

    Hello
    in10g, I have stop my DB and make a backup of my database (it is a consistent backup) a cold.
    RMAN allows this backup? How?
    Thank you.

    When everything has failed, read the Fine Manual

    http://www.Oracle.com/pls/db102/portal.portal_db?selected=3#index-BAC

  • Error with rman and ArcServe backup

    Hello everyone.
    There is a problem with the backup database. Backup is done using ArcServe on the tape library. Logs attached.

    Previously, everything worked correctly (02/01).

    02/01 23:01:45(30410412) - ********************************************************************************

    02/01 23:01:45 (30410412) - Oracle's agent for CA ARCserve Backup for UNIX r16 Agent for Oracle (Build 6838.1)

    02/01 23:01:45 (30410412) - server type [12]

    23:01:45 (30410412) 02/01 - a job has been received from CA ARCserve Backup running on host A5400W10

    23:01:45 (30410412) 02/01 - info Agent Oracle. [16,0,6838,60]

    23:01:45 (30410412) 02/01 - the SID of Oracle database to be backed up is [APRODE]

    23:01:45 (30410412) 02/01 - the backup option is RECOVERY MANAGER through GUI

    02/01 23:01:45 (30410412) - getCurrentOracleVersion - return status = 0

    23:01:45 (30410412) 02/01 - the SID of Oracle database to be backed up is [APRODE]

    23:01:45 (30410412) 02/01 - the SID of Oracle database to be backed up is [APRODE]

    02/01 23:01:45 (30410412) - the Oracle database is installed on [APRODE]

    02/01 23:01:45 (30410412) - getCurrentOracleVersion - return status = 0

    02/01 23:01:46 (30410412) - getCurrentOracleVersion - return status = 0

    02/01 23:01:46 (30410412) - getCurrentOracleVersion - return status = 0

    02/01 23:09:17 (30410412) - AE360144 could not run the RMAN command /ftas01/prod/oebs/db/tech_st/10.2.0/bin/rman msglog ' / tmp/rman_53.log ' nocatalog

    02/01 23:09:17 (30410412) - AX-RMAN =.

    23:09:17 (30410412) 02/01 - RELEASED AX-RMAN RMAN

    02/01 23:09:17 (30410412) - AX-RMAN =.

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX-RMAN Recovery Manager: Release 10.2.0.4.0 - Production on Sat Feb 1 23:01:46 2014

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX-RMAN Copyright (c) 1982, 2007, Oracle.  All rights reserved.

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX-RMAN RMAN >

    02/01 23:09:17 (30410412) - AX-RMAN is connected to the target database: APRODE (DBID = 260521810)

    02/01 23:09:17 (30410412) - AX-RMAN using target control file database instead of recovery catalog

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX-RMAN RMAN >

    02/01 23:09:17 (30410412) - AX-RMAN RMAN > run {}

    02/01 23:09:17 (30410412) - AX-RMAN 2 > allocate type of dev1_1 channel sbt format '% u_ p_ %c % journalieres_.

    02/01 23:09:17 (30410412) - AX-RMAN 3 >

    02/01 23:09:17 (30410412) - AX-RMAN 4 > parms='SBT_LIBRARY=/opt/CA/ABoraagt/libobk64.so,ENV= (MASTER_JOBID = 28 SBT_PARMS = a5400w10; PGRP0; 01.02.14 11:36; DAILY LIFE; < NULL >; SUMMARY; FAKE; FAKE; < NULL >; < NULL >; FAKE; 0; 1; 5; 0; < NULL >, DUMMY_JOBID = 53, SVR_VER = 12, MASTER_PID = 30410412, CANCEL_SBT = 110100517, CA_AB_SECURITY_ID = Global | A

    02/01 23:09:17 (30410412) - AX-RMAN 5 > RCSECURITYID619011391281214? caroot)';

    02/01 23:09:17 (30410412) - AX-RMAN 6 >

    02/01 23:09:17 (30410412) - AX-RMAN 7 > Send 'SBT_MEDIAPOOL = all DAYS. "

    02/01 23:09:17 (30410412) - AX-RMAN 8 >

    02/01 23:09:17 (30410412) - AX-RMAN 9 > level incremental backup = 1 database cumulative tag = "DAILY" understand current controlfile more archivelog tag = "DAILY" ENTRY DELETE;

    02/01 23:09:17 (30410412) - AX-RMAN 10 >

    02/01 23:09:17 (30410412) - AX-RMAN 11 > delete noprompt obsolete force device type sbt;

    02/01 23:09:17 (30410412) - AX-RMAN 12 >

    02/01 23:09:17 (30410412) - 13 AX-RMAN > exit channel dev1_1;

    02/01 23:09:17 (30410412) - AX-RMAN 14 >

    {02/01 23:09:17 (30410412) - AX-RMAN 15 >}

    02/01 23:09:17 (30410412) - AX-RMAN allocated channel: dev1_1

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: sid = 1668 devtype = SBT_TAPE

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: CA ARCserve Backup Agent Oracle v16.0

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX-RMAN sent the pipe command: dev1_1

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - backup RMAN-AX starting at 02/01/2014/23: 01:54

    02/01 23:09:17 (30410412) - AX-RMAN current relating to records archived

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126766_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126767_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126768_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126769_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126770_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126771_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126772_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126773_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126774_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126775_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126776_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126777_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126778_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126779_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126780_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126781_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126782_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126783_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126784_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126785_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126786_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126787_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126788_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126789_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126790_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126791_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126792_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126793_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126794_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126795_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126796_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126797_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126798_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126799_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126800_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126801_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126802_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126803_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126804_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126805_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126806_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126807_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126808_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126809_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126810_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126811_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126812_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126813_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126814_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126815_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126816_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126817_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126818_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126819_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126820_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126821_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126822_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126823_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126824_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126825_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126826_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126827_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126828_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126829_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126830_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126831_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126832_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126833_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126834_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126835_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126836_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126837_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126838_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126839_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126840_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126841_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126842_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126843_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126844_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126845_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126846_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126847_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126848_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126849_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126850_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126851_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126852_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126853_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126854_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126855_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126856_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126857_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126858_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126859_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126860_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126861_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126862_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126863_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126864_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126865_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126866_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126867_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126868_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126869_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126870_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126871_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126872_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126873_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126874_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126875_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126876_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126877_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126878_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126879_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126880_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126881_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126882_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126883_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126884_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126885_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126886_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126887_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126888_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126889_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126890_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126891_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126892_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126893_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126894_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126895_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126896_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126897_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126898_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126899_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126900_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126901_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126902_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126903_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126904_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126905_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126906_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126907_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126908_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126909_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126910_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126911_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126912_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126913_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126914_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126915_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126916_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126917_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126918_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126919_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126920_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126921_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126922_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126923_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126924_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126925_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126926_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126927_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126928_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126929_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126930_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126931_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126932_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126933_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126934_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126935_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126936_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126937_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126938_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126939_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126940_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126941_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126942_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126943_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126944_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126945_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126946_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126947_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126948_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126949_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126950_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126951_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126952_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126953_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126954_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126955_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126956_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126957_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126958_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126959_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126960_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126961_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126962_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126963_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126964_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126965_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126966_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126967_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126968_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126969_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126970_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126971_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126972_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126973_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126974_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126975_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126976_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126977_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126978_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126979_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126980_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126981_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126982_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126983_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126984_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126985_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126986_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126987_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126988_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126989_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126990_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126991_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126992_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126993_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126994_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126995_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126996_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126997_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126998_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_126999_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127000_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127001_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127002_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127003_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127004_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127005_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127006_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127007_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127008_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127009_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127010_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127011_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127012_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127013_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127014_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127015_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127016_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - archive jump AX-RMAN log file /ftas01/prod/oebs/db/arc/1_127017_753902518.dbf. already saved 1 time

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: from archive newspaper backupset

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: specification of archive log backup set

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 = recid 127018 127834 = 838349169 stamp = sequence

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127019 127835 = 838349736 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127020 127836 = 838350777 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid = 127021 stamp 127837 = 838352880

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127022 127838 = 838353889 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127023 127839 = 838354528 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid 127024 = 127840 = 838355108 stamp

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid = 127025 stamp 127841 = 838357605

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid = 127026 stamp = 127842 838359931

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127027 127843 = 838360090 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid = 127028 stamp 127844 = 838364442

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid 127029 stamp 127845 = 838364778 =

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127030 recid = stamp 127846 = 838370850

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 = recid 127031 127847 = 838371366 stamp = sequence

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid 127032 stamp 127848 = 838371975 =

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid = 127033 stamp 127849 = 838372935

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127034 127850 = 838374516 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence 127035 recid = 127851 = 838375619 stamp =

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid 127036 stamp 127852 = 838375935 =

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127037 127853 = 838376747 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid 127038 stamp 127854 = 838377933 =

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127039 127855 = 838378115 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127040 127856 = 838378278 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid 127041 stamp 127857 = 838378606 =

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127042 127858 = 838378714 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127043 127859 = 838379210 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 = recid 127044 127860 = 838379432 stamp = sequence

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid = 127045 stamp 127861 = 838379479

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 = recid 127046 127862 = 838379640 stamp = sequence

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127047 127863 = 838379800 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127048 127864 = 838379958 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid 127049 stamp 127865 = 838380121 =

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = 127050 127866 = 838380184 stamp = recid

    02/01 23:09:17 (30410412) - AX-RMAN of entry thread archive log = 1 sequence = recid 127051 stamp 127867 = 838382587 =

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: total starting at 02/01/2014/23, 1:02:07

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: finished piece 1 at 02/01/2014/23: 07:52

    02/01 23:09:17 (30410412) - handful of room AX-RMAN = DAILY_8dovijje_1_1 = DAILY comment tag = API Version 2.0, Version MMS 16.0.0.0

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: complete set of backups, time: 00:05:46

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: delete the archives or logs

    02/01 23:09:17 (30410412) - AX-RMAN archive log filename=/ftas01/prod/oebs/db/arc/1_127018_753902518.dbf recid = stamp 127834 = 838349169

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127835 = 838349736 stamp filename=/ftas01/prod/oebs/db/arc/1_127019_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127836 = 838350777 stamp filename=/ftas01/prod/oebs/db/arc/1_127020_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log filename=/ftas01/prod/oebs/db/arc/1_127021_753902518.dbf recid = stamp 127837 = 838352880

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127838 = 838353889 stamp filename=/ftas01/prod/oebs/db/arc/1_127022_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127839 = 838354528 stamp filename=/ftas01/prod/oebs/db/arc/1_127023_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127840 = 838355108 stamp filename=/ftas01/prod/oebs/db/arc/1_127024_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127841 = 838357605 stamp filename=/ftas01/prod/oebs/db/arc/1_127025_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127842 = 838359931 stamp filename=/ftas01/prod/oebs/db/arc/1_127026_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127843 = 838360090 stamp filename=/ftas01/prod/oebs/db/arc/1_127027_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log filename=/ftas01/prod/oebs/db/arc/1_127028_753902518.dbf recid = stamp 127844 = 838364442

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127845 = 838364778 stamp filename=/ftas01/prod/oebs/db/arc/1_127029_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log filename=/ftas01/prod/oebs/db/arc/1_127030_753902518.dbf recid = stamp 127846 = 838370850

    02/01 23:09:17 (30410412) - AX-RMAN archive log filename=/ftas01/prod/oebs/db/arc/1_127031_753902518.dbf recid = stamp 127847 = 838371366

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127848 = 838371975 stamp filename=/ftas01/prod/oebs/db/arc/1_127032_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127849 = 838372935 stamp filename=/ftas01/prod/oebs/db/arc/1_127033_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127850 = 838374516 stamp filename=/ftas01/prod/oebs/db/arc/1_127034_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127851 = 838375619 stamp filename=/ftas01/prod/oebs/db/arc/1_127035_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127852 = 838375935 stamp filename=/ftas01/prod/oebs/db/arc/1_127036_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127853 = 838376747 stamp filename=/ftas01/prod/oebs/db/arc/1_127037_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127854 = 838377933 stamp filename=/ftas01/prod/oebs/db/arc/1_127038_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127855 = 838378115 stamp filename=/ftas01/prod/oebs/db/arc/1_127039_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127856 = 838378278 stamp filename=/ftas01/prod/oebs/db/arc/1_127040_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127857 = 838378606 stamp filename=/ftas01/prod/oebs/db/arc/1_127041_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127858 = 838378714 stamp filename=/ftas01/prod/oebs/db/arc/1_127042_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127859 = 838379210 stamp filename=/ftas01/prod/oebs/db/arc/1_127043_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log filename=/ftas01/prod/oebs/db/arc/1_127044_753902518.dbf recid = stamp 127860 = 838379432

    02/01 23:09:17 (30410412) - AX-RMAN archive log filename=/ftas01/prod/oebs/db/arc/1_127045_753902518.dbf recid = stamp 127861 = 838379479

    02/01 23:09:17 (30410412) - AX-RMAN archive log filename=/ftas01/prod/oebs/db/arc/1_127046_753902518.dbf recid = stamp 127862 = 838379640

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127863 = 838379800 stamp filename=/ftas01/prod/oebs/db/arc/1_127047_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127864 = 838379958 stamp filename=/ftas01/prod/oebs/db/arc/1_127048_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127865 = 838380121 stamp filename=/ftas01/prod/oebs/db/arc/1_127049_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127866 = 838380184 stamp filename=/ftas01/prod/oebs/db/arc/1_127050_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN archive log recid = 127867 = 838382587 stamp filename=/ftas01/prod/oebs/db/arc/1_127051_753902518.dbf

    02/01 23:09:17 (30410412) - AX-RMAN channel dev1_1: from archive newspaper backupset

    02/01 23:09:17 (30410412) - AX-RMAN out channel: dev1_1

    02/01 23:09:17 (30410412) - AX-RMAN RMAN-00571: =.

    02/01 23:09:17 (30410412) - AX-RMAN RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

    02/01 23:09:17 (30410412) - AX-RMAN RMAN-00571: =.

    02/01 23:09:17 (30410412) - AX-RMAN RMAN-03002: failure of an order so backup archivelog to 01/02/2014 23:09:15

    02/01 23:09:17 (30410412) - AX-RMAN ORA-19588: 127868 838384021 recid archived log buffer is no longer valid

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX-RMAN RMAN > * end-of-file *.

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX-RMAN RMAN >

    02/01 23:09:17 (30410412) - AX-RMAN

    02/01 23:09:17 (30410412) - AX - complete Recovery Manager RMAN.

    02/01 23:09:17 (30410412) - AE360074 The Oracle database backup failed. return code [-1]

    02/01 23:09:17 (30410412) - AW360078 please check the backup log file

    02/02 23:33:07(30344726) - ********************************************************************************

    02/02 23:33:07 (30344726) - Oracle's agent for CA ARCserve Backup for UNIX r16 Agent for Oracle (Build 6838.1)

    02/02 23:33:07 (30344726) - server type [12]

    02/02 23:33:07 (30344726) - a job has been received from CA ARCserve Backup running on host A5400W10

    02/02 23:33:07 (30344726) - info Agent Oracle. [16,0,6838,60]

    02/02 23:33:07 (30344726) - The Oracle database SID to back up is [APRODE]

    02/02 23:33:07 (30344726) - the backup option is RECOVERY MANAGER through GUI

    02/02 23:33:07 (30344726) - getCurrentOracleVersion - return status = 0

    02/02 23:33:07 (30344726) - The Oracle database SID to back up is [APRODE]

    02/02 23:33:08 (30344726) - The Oracle database SID to back up is [APRODE]

    02/02 23:33:08 (30344726) - the Oracle database is installed on [APRODE]

    02/02 23:33:08 (30344726) - getCurrentOracleVersion - return status = 0

    02/02 23:33:08 (30344726) - getCurrentOracleVersion - return status = 0

    02/02 23:33:08 (30344726) - getCurrentOracleVersion - return status = 0

    02/02 23:33:10 (30344726) - AE360144 could not run the RMAN command /ftas01/prod/oebs/db/tech_st/10.2.0/bin/rman msglog ' / tmp/rman_53.log ' nocatalog

    02/02 23:33:10 (30344726) - AX-RMAN =.

    02/02 23:33:10 (30344726) - AX-RMAN RMAN OUTPUT

    02/02 23:33:10 (30344726) - AX-RMAN =.

    02/02 23:33:10 (30344726) - AX-RMAN

    02/02 23:33:10 (30344726) - AX - RMAN Recovery Manager: Release 10.2.0.4.0 - Production on Sun Feb 2 23:33:08 2014

    02/02 23:33:10 (30344726) - AX-RMAN

    02/02 23:33:10 (30344726) - AX-RMAN Copyright (c) 1982, 2007, Oracle.  All rights reserved.

    02/02 23:33:10 (30344726) - AX-RMAN

    02/02 23:33:10 (30344726) - AX-RMAN RMAN >

    02/02 23:33:10 (30344726) - AX-RMAN is connected to the target database: APRODE (DBID = 260521810)

    02/02 23:33:10 (30344726) - AX-RMAN using target control file database instead of recovery catalog

    02/02 23:33:10 (30344726) - AX-RMAN

    02/02 23:33:10 (30344726) - AX-RMAN RMAN >

    02/02 23:33:10 (30344726) - AX-RMAN RMAN > run {}

    02/02 23:33:10 (30344726) - AX-RMAN 2 > allocate type of dev1_1 channel sbt format '% u_ p_ %c % HOURLY_.

    02/02 23:33:10 (30344726) - AX-RMAN 3 > parms='SBT_LIBRARY=/opt/CA/ABoraagt/libobk64.so,ENV= (MASTER_JOBID = 26, SBT_PARMS = a5400w10; PGRP0; 01.02.14 11:36; DAILY LIFE; < NULL >; SUMMARY; FAKE; FAKE; < NULL >; < NULL >; FAKE; 0; 1; 5; 0; < NULL >, DUMMY_JOBID = 53, SVR_VER = 12, MASTER_PID = 30344726, CANCEL_SBT = 294649912, CA_AB_SECURITY_ID = Global | A

    02/02 23:33:10 (30344726) - AX-RMAN 4 > RCSECURITYID619621391369496? caroot)';

    02/02 23:33:10 (30344726) - AX-RMAN 5 >

    02/02 23:33:10 (30344726) - 6 AX-RMAN > Send 'SBT_MEDIAPOOL = all DAYS. "

    02/02 23:33:10 (30344726) - AX-RMAN 7 >

    02/02 23:33:10 (30344726) - 8 AX-RMAN > * end-of-file *.

    02/02 23:33:10 (30344726) - AX-RMAN 9 >

    02/02 23:33:10 (30344726) - AX-RMAN RMAN-00571: =.

    02/02 23:33:10 (30344726) - AX-RMAN RMAN-00569: = ERROR MESSAGE STACK FOLLOWS =.

    02/02 23:33:10 (30344726) - AX-RMAN RMAN-00571: =.

    02/02 23:33:10 (30344726) - AX-RMAN RMAN-00558: error occurred during parsing of order entry

    02/02 23:33:10 (30344726) - AX-RMAN RMAN-01009: syntax error: found 'exit': expected an of: "{assign, modify, save beginline, blockrecover, catalog, edit, copy, convert, duplication, configure, duplicate, debug, delete, run, endinline, flashback, host, mount, open, plsql, recover, release, replicate, report, restoration, resync,}, together, setlimit, sql, switch, start, stop, send, display, transport, post»

    02/02 23:33:10 (30344726) - AX-RMAN RMAN-01007: line file 2 column 1: entry standard

    02/02 23:33:10 (30344726) - AX-RMAN

    02/02 23:33:10 (30344726) - AX-RMAN RMAN >

    02/02 23:33:10 (30344726) - AX-RMAN

    02/02 23:33:10 (30344726) - AX - complete Recovery Manager RMAN.

    02/02 23:33:10 (30344726) - AE360074 The Oracle database backup failed. return code [-1]

    02/02 23:33:10 (30344726) - AW360078 please check the backup log file

    You don't seem to have a level 0 incremental script.  You would need a level 0 are common (for example weekly or fortnlightly) who would act as the base line for the differential level 1 cumulative runs.  (i.e. a level 0 backup is needed because it must be restored first before restoring level 1 incremental backup).  The full monthly database backup script CAN act as the base line of level 0 to level 1 incremental backups.

    (I wonder what made the monthly script, when it changes the hourly script at beginning and end).

    The backup failed, run the 02/02 was certainly a truncated - script as if the script was in the Middle being changed.

    Hemant K Collette

  • Update and select ask when tablespace in backup mode

    Hello

    I have a question related to the DML statement when the tablespace is in backup mode. Suppose that when putting the tablespace in begin backup mode and then during user times run an update on this tablespace statement and validation of the transaction and any other user run the select query on the same data and image that will appear and where to display the data will be taken.

    steps to follow:

    alter tablespace users begin backup;

    Update emp set sal = 4000 where empno = 101;
    commit;
    Select * from emp where empno = 101;

    Now what result will appear and where data will get.

    Thank you
    Gulshan

    Hello

    alter tablespace users begin backup;
    
    update emp set sal=4000 where empno=101;
    commit;
    select * from emp where empno=101;
    

    As far as I KNOW, the database could function normally and you will not find the difference from the point of view of the transactions. If you check process and the Oracle architecture, bit blurry will be established towards the top and vectors to additional would be saved upward in the newspapers online redo - due to which size of redo would be higher than in normal operations. Second, you must be concerned about the backup - which may not be compatible. In order to better opt for RMAN instead of the user managed backups.

    -Pavan Kumar N

  • archivelog mode and hot backup

    Hello
    in g R2
    This is the hot backup:
    online backup
    
    A backup of one or more datafiles taken while a database is open and the datafiles are online. 
    When you make a user-managed backup while the database is open, you must put the 
    tablespaces in backup mode by issuing an ALTER TABLESPACE BEGIN BACKUP command. 
    (You can also use ALTER DATABASE BEGIN BACKUP to put all tablespaces in your database into backup mode in one step.)
    would we in log mode archive to do an online backup?

    Thank you.

    user522961 wrote:
    Hello
    in g R2
    This is the hot backup:

    would we in log mode archive to do an online backup?

    Yes. It is a must!

    HTH
    Aman...

  • RMAN control file backup and restore: help needed

    Hello guys,.

    I am new to RMAN and run RMAN for BACKUP scripts.

    Run {}

    CONFIGURE REDUNDANCY 1 RETENTION STRATEGY;

    SET UP THE DEVICE TYPE DISK PARALLELISM 2 TYPE OF BACKUP BACKUPSET.

    backup in compressed format additional effective backupset 0 database tag 'TEST_FULL_BACKUP' '$RMAN_BACKUP/datafiles_backup/bkp_${DD}/%d_%s_%p ';

    Backup to compressed backupset archivelog all not saved both 1 FORMAT "$RMAN_BACKUP/arch_backup/bkp_${DD}/ARCH_%d_%s_%p".

    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK to '$RMAN_BACKUP/controlfile_backup/bkp_${DD}/%F ';

    delete noprompt obsolete;

    delete noprompt archivelog all completed before ' sysdate-2';

    }

    I can see the data file and archieve files backup

    $RMAN_BACKUP/datafiles_backup/bkp_${DD}/%d_%s_%p';

    '$RMAN_BACKUP/arch_backup/bkp_${DD}/ARCH_%d_%s_%p ';

    But control missing in "$RMAN_BACKUP/controlfile_backup/bkp_${DD}/%F";

    What is the problem with my order... Help, please

    S

    RMAN > list backup of controlfile;

  • What happens when the database in backup Mode?

    Hello

    What happens when we kept the database in backup mode, by using the command "Alter database Begin Backup" means;


    Thank you...
    ASIT

    OK, now my query is whether Oracle freeze the data file header and information is stored in the log file of restoration by progression. So if my backup job continues for 30 min and at the same time someone did some update of database, then how these updates to the information written back to the data file after "Alter Database End Backup'.»

    Oracle only blocks data file headers, no body. Modified blocks will be stored in data files (at control points) even in backup mode.
    If checkpoint has not arrived yet after this update and validation, and DB has decreased, then when it will start it will redo-log automated recovery.

    Published by: user11181920 on Sep 21, 2012 11:54

  • How to Setup Data Guard with alter tablespace... begin backup approach

    Hello!

    I am writing this compilation of documents in a guard daata establishing in 10g. I was in charge to present different approaches in implementing on Rhel 5.

    I came across 3 procedures (which is to duplicate a database with RMAN, then configure it to a Data Guard feature). I read a process using (let's this is what the article said, but procedure was presented):

    alter tablespace... .begin backup;
    alter tablespace... .end backup;

    then copy the generated files and configure it to the data protection feature.

    Someone help it with that? Is there like a blogsite or steps I can take for this scenario?

    Hello;

    The best I found was: (and its same 10 Oracle! and not RMAN.)

    http://sites.Google.com/site/catchdba/physical-standby-database-using-HOTBackup

    There, an old link here on this topic:

    DataGuard configuration using hot backup files

    Hard to find much on this topic as "Hot Backup" almost always comes to RMAN.

    This collection of notes can also help:

    DataGuard knowledge browser Product Page [ID 267955.1]

    And the "Formidable" Powerpoint:

    www.dbspecialists.com/files/presentations/standbydb.ppt

    Seems that this method is dead somewhere between Oracle 8 and Oracle 9

    Best regards

    mseberg

    Published by: mseberg on March 16, 2012 20:31

  • RMAN and 05500: the auxiliary database must not be mounted when using DUPLICATE

    Hello

    Oracle10g2
    RHEL4

    The artist DR configuration using RMAN backup.

    There are two db Server computers:

    1) mac1-> backend
    2) mac2-> backup server

    File structure of database as a backup on the server location is the same.

    Entry TNSNAME on both servers are perfect, verified using tnsping.


    Now, to create a backup database.

    I made the RMAN backup on mac1 (main server) then transferred backup (full backup directory) to mac2 (backup server)

    Then, on the standby server,

    -> took on the eve of the database in nomount mode
    --> connected to the target database (i.e. standby db) with RMAN
    -> database connected to auxiliary

    But the granting of "Duplicate" command results in the error, as shown below:

    RMAN > target database double standby nofilenamecheck dorecover;

    RMAN-05502: the target database must be mounted on the issue of a duplicate order

    and when I put the target database (standby db) in the editing mode, gives the error below:

    RMAN and 05500: the auxiliary database must not be mounted on the issue of a duplicate order

    where I did mistake? How to solve this problem?


    Concerning

    Hello

    There is nothing wrong

    target (in fact the Pb of the source) must be mounted
    auxiliary (actually the destination db) can not be mounted.

    These messages refers to the source and destination db. from 11 g, you can duplicate opensource db (a.k.a. target)

    P.

  • database in backup mode

    Hi guys,.

    If I put my database in backup mode and perform the backup (hotbackup / online) of the database.

    When I need to do the restore, can I archive logs at all? (not necessary to recover to point in time) Can I restore data files and do an alter database open resetlogs?

    The database will be inconsistent and cannot start without applying archive logs at all? as the data is not stopping when you perform the backup.

    Thank you

    You have to do it all again (i.e. the ArchiveLogs):
    FROM: The time where the ALTER DATABASE BEGIN BACKUP (or the first ALTER TABLESPACE BEGIN BACKUP)
    To: The first ArchiveLog after BACKUP END EDIT (or the last BACKUP END of ALTER TABLESPACE)
    Therefore, you should always make ALTER SYSTEM ARCHIVE LOG CURRENT at the end of the backup mode and capture this archivelog in your backup.

    The database will be inconsistent (and DOES not) until and unless you apply the redo (archived).

    Hemant K Collette

  • My screen display options box continues to appear without pushing me anything, it appears and begins to go through the options in itself?

    My screen display options box continues to appear without pushing me anything, it appears and begins to go through the options in itself?

    Hello
    It could be hardware or software related. You can view these methods:
     
    Method 1.
    Computers get slower for various reasons: files become disorganized, unnecessary software consumes resources, readers of network unused slow start or too many programs run automatically at startup. Larger, serious questions can dramatically too slow down your computer's performance. You may have a virus or have need troubleshoot clean start.
    Check to see if the problem exists in Safe Mode, if the computer works as expected in mode without failure, then we can solve the problem in the clean boot state.
    a. refer to the article below for the procedure safe mode in Windows XP
    A description of the options to start in Windows XP Mode
    http://support.Microsoft.com/kb/315222

    b. you need to perform a clean boot to find the program that is causing and then disable or remove.
    How to configure Windows XP to start in a "clean boot" State
    http://support.Microsoft.com/kb/310353/en-us
    Note: When you are finished troubleshooting, follow the steps as explained in the article to reset the computer to start as usual.
     
    Method 2.
    Also, check out the steps that are listed in the articles below and check.
    How to set performance options in Windows XP
    http://support.Microsoft.com/kb/308417
    Restore the performance of your computer with Windows XP
    http://www.Microsoft.com/windowsxp/using/Setup/expert/northrup_restoreperf.mspx
  • HP2575v backup mode

    My color cartridge is bad and I want to print in backup mode.

    I can't enter this mode, I get either 'insert the left dropout color print cartridge"when no cartridge is installed, or 'remove and check color cartridge" where cratridge is the printer.

    Research on the Internet indicates I can get the printer in backup mode to print B & W or grayscale, but I can't see anyway to get there.

    How I really enter backup mode?

    Nothing I have seen on internet searches and web sites HP I can get there.

    I refuse to spend money on an ink cartridge new only to find the printer is bad.

    Once more, how can I get HP2575v backup printing mode?

    Not every printer with cartridges of part consisting of the cartridge and the black print head three colors have the ability to print reserve mode. If we took the color cartridge and tried to print without him, and that the printer has not reacted or given an error message. He is not one of the printers that have this capability. This is the way which those that tests if the printer is able to backup/reserve mode printing.

Maybe you are looking for