Intermittent OCFS2 Heartbeat Errors During RMAN Backup

Hello all. If this is better suited to an OCFS2 list, please let me know.
I have an Oracle 10g RAC (10.2.0.2), on which one node runs an RMAN backup nightly around 10:45 PM. The node is running on RHEL4 x64 with 8 GB of RAM.
About every other night these errors turn up in the messages log in the server:
Apr 19 23:48:23 servername kernel: (4059,2):o2hb_setup_one_bio:371 ERROR: Could not alloc slots BIO!
Apr 19 23:48:23 servername kernel: (4059,2):o2hb_read_slots:507 ERROR: status = -12
Apr 19 23:48:23 servername kernel: (4059,2):o2hb_do_disk_heartbeat:973 ERROR: status = -12
This only seems to happen when the RMAN backup is in progress, and I get these at no other time of the day.
Can anyone point me to a reference for what these error codes mean, and if you've encountered these before can you tell me what impact this has and how it can be resolved? I'm assuming that the read/write load on the block device for the OCFS2 mount is causing issues, but this all conjecture without an explanation of the error code.
Thanks in advance,
Dan

Thanks for the response!
Kernel is: 2.6.9-34.0.2.ELsmp
ocfs2 is: ocfs2-2.6.9-34.0.2.ELsmp-1.2.4-2
To my knowledge it's never lead to a fence, and these are the only ocfs2 messages logged in the system log. When these messages occur, there doesn't seem to be any other symptom and the backup completes.
To be honest, we've never had issues with ocfs2 since we set this RAC node up, so I'm sad to say I don't even know what messages a fencing event would create.

Similar Messages

  • RMAN throwing errors during Tablespace Backup - RMAN-06004 and RMAN-06019

    Hi All.
    Please help me to fix trail of error message I'm getting while trying backup of a newly added tablespace in database. I'm using RMAN as a recovery method.
    Tablespace Name: test
    DB Version: Oracle 10g R1.
    OS: Red Hat Linux 5
    RMAN> report schema;
    Report of database schema
    List of Permanent Datafiles
    ===========================
    File Size(MB) Tablespace RB segs Datafile Name
    1 490 SYSTEM YES /u01/app/oracle/oradata/qrcl/system01.dbf
    2 25 UNDOTBS1 YES /u01/app/oracle/oradata/qrcl/undotbs01.dbf
    3 270 SYSAUX NO /u01/app/oracle/oradata/qrcl/sysaux01.dbf
    4 23 USERS NO /u01/app/oracle/oradata/qrcl/users01.dbf
    5 40 TEST NO /u01/app/test01.dbf
    List of Temporary Files
    =======================
    File Size(MB) Tablespace Maxsize(MB) Tempfile Name
    1 20 TEMP 32767 /u01/app/oracle/oradata/qrcl/temp01.dbf
    RMAN>
    RMAN> backup tablespace "test";
    Starting backup at 22-AUG-12
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 08/22/2012 11:57:13
    RMAN-06004: ORACLE error from recovery catalog database: RMAN-20202: tablespace not found in the recovery catalog
    RMAN-06019: could not translate tablespace name "test"
    RMAN> restore tablespace test;
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-00558: error encountered while parsing input commands
    RMAN-01009: syntax error: found "test": expecting one of: "double-quoted-string, identifier, single-quoted-string"
    RMAN-01007: at line 1 column 20 file: standard input
    I tried to update Catalog Server but still no luck:
    RMAN> RESYNC CATALOG;
    starting full resync of recovery catalog
    full resync complete
    Please Assist.
    Thanks
    Prashant Dixit

    Hello Prashant;
    The main issue is your tablespace name is an RMAN Reserved Word "Test"
    http://docs.oracle.com/cd/B13789_01/server.101/b10770/rcmcomma.htm#1006728
    Different test
    -- Create the tablespace
    CREATE TABLESPACE OTN_TEST DATAFILE
      '/u01/oradata/RECOVER2/test01.dbf' SIZE 1M AUTOEXTEND OFF
    LOGGING
    ONLINE;-- Create a user for the tablespace
    CREATE USER RMAN_TEST
      IDENTIFIED BY RMAN_TEST
      DEFAULT TABLESPACE OTN_TEST
      TEMPORARY TABLESPACE TEMP
      PROFILE DEFAULT
      ACCOUNT UNLOCK;
    ALTER USER RMAN_TEST QUOTA UNLIMITED ON "OTN_TEST";  -- Create a table in the tablespace
    CREATE TABLE RMAN_TEST.EMP
      EMPNO     NUMBER,
      ENAME     VARCHAR2(30 BYTE),
      JOB       VARCHAR2(30 BYTE),
      MGR       NUMBER,
      HIREDATE  DATE,
      SAL       NUMBER,
      COMM      NUMBER,
      DEPTNO    NUMBER
    TABLESPACE OTN_TEST;-- Add some data
    SET DEFINE OFF;
    Insert into RMAN_TEST.EMP
       (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)
    Values
       (7369, 'SMITH', 'CLERK', 7902, TO_DATE('12/17/1980 00:00:00', 'MM/DD/YYYY HH24:MI:SS'),
        800, 20, 0);
    Insert into RMAN_TEST.EMP
       (EMPNO, ENAME, JOB, MGR, HIREDATE, SAL, COMM, DEPTNO)
    Values
       (5000, 'NOCATALOG', 'DBA', 77902, TO_DATE('04/01/2010 00:00:00', 'MM/DD/YYYY HH24:MI:SS'),
        200, 0, 0);
    COMMIT;-- start RMAN and backup tablespace
    RMAN> BACKUP TABLESPACE OTN_TEST;
    Starting backup at 22-AUG-12
    starting full resync of recovery catalog
    full resync complete
    using channel ORA_DISK_1
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    input datafile file number=00007 name=/u01/oradata/RECOVER2/test01.dbf
    channel ORA_DISK_1: starting piece 1 at 22-AUG-12
    channel ORA_DISK_1: finished piece 1 at 22-AUG-12
    piece handle=/u01/app/oracle/flash_recovery_area/RECOVER2/backupset/2012_08_22/o1_mf_nnndf_TAG20120822T080711_839pczng_.bkp tag=TAG20120822T080711 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:01
    Finished backup at 22-AUG-12
    Starting Control File and SPFILE Autobackup at 22-AUG-12
    piece handle=/u01/app/oracle/flash_recovery_area/RECOVER2/autobackup/2012_08_22/o1_mf_s_791971633_839pd1bm_.bkp comment=NONE
    Finished Control File and SPFILE Autobackup at 22-AUG-12
    Note
    If you dropped the tablespace then you need to recover the database to a point in time, not the tablespace.
    Best Regards
    mseberg

  • RMAN error during auto backup

    Hello,
    We have crontab to take archivelog backup at every hour at 10 mins. mon-sat incremental and sunday level 0 backup. Today morning I got following error in the log file. (RAC DB 10.2.0.5, OS=RHL)
    RMAN-00571:
    ===========================================================brRMAN-00569: ===============
    ERROR MESSAGE STACK FOLLOWS ===============brRMAN-00571:
    ===========================================================brRMAN-03002: failure of backup
    plus archivelog command at 05/21/2012 05:55:59brRMAN-03014: implicit resync of recovery
    catalog failedbrRMAN-06004: ORACLE error from recovery catalog database: ORA-03113:
    end-of-file on communication channelbrORACLE error from recovery catalog database:
    ORA-03114: not connected to ORACLEbrRMAN-00571:
    ===========================================================brRMAN-00569: ===============
    ERROR MESSAGE STACK FOLLOWS ===============brRMAN-00571:
    ===========================================================brRMAN-03002: failure of
    allocate command at 05/21/2012 05:56:00brRMAN-06004: ORACLE error from recovery catalog
    database: ORA-03114: not connected to ORACLElist backup of archivelog all; .. while connecting to rman catalog..following are the few lines from the output.
    I found almost related MOS note but unfortunately, I am still unable to understand what actually happened or what is trying to be explain in this particular note. RMAN Backup fails with error ORA-3114 [ID 1264084.1]. One more important question for my concern is that if the command failed for example as in my case. The next time when backup command started to take incremental backups, will it cover or backup those archivelog which were not backed up because of the above error?
    List of Archived Logs in backup set 2481637
      Thrd Seq     Low SCN    Low Time            Next SCN   Next Time
      1    67414   27261392224 21-05-2012 05:10:22 27261405217 21-05-2012 05:55:55
      1    67415   27261405217 21-05-2012 05:55:55 27261422601 21-05-2012 06:10:07
      2    70049   27261392222 21-05-2012 05:10:20 27261405224 21-05-2012 05:55:57
      2    70050   27261405224 21-05-2012 05:55:57 27261422604 21-05-2012 06:10:08Thank you.
    Best Regards.

    A "BACKUP ARCHIVELOG" is not an "Incremental Backup" (ergo, the question of "differential" or "cumulative" doesn't arise).
    It is a Backup of the ArchiveLogs specified in archlogspecifier . Since you have specified "ALL" it will attempt to backup all known archivelogs that have not been deleted. The "DELETE ALL INPUT" will delete the files after they have been successfully backed up. If the backup fails, the DELETE is not executed. Therefore, at the next execution, the same (and newer) ArchiveLogs will get backed up.
    Why don't you maintain a log of the RMAN Backup run (either with "SPOOL LOG TO .." in the RMAN script or by redirecting STDOUT and STDERR to a custom log file).
    Hemant K Chitale

  • Log Switch during RMAN backup

    I have seen in many RMAN backup scripts that a manual log switching is performed in first line of the script? What is it purpose, just to write changes needed to reconstruct the DML/DDL statements to online redo logfiles and start the archiving process if db is running in archive log mode?

    918868 wrote:
    I have seen in many RMAN backup scripts that a manual log switching is performed in first line of the script? What is it purpose, just to write changes needed to reconstruct the DML/DDL statements to online redo logfiles and start the archiving process if db is running in archive log mode?That could be the only reason but even that is not needed as RMAN would do a log switch automatically to push the current redo log file to make it's archive log and include it in the backup.
    Aman....

  • Error "ARC0: Unable to archive..." during rman backup

    Hello DBA's!
    Problem:
    When ever I make an archivelog backup with rman it generates the following entry into the alertlog:
    Wed Jun 20 21:00:26 2007
    ARCH: Evaluating archive thread 1 sequence 9013
    Wed Jun 20 21:00:26 2007
    ARC0: Evaluating archive thread 1 sequence 9013
    ARC0: Unable to archive thread 1 sequence 9013
    Log actively being archived by another process
    I use the following RMAN-Script:
    "backup device type disk tag 'BACKUP_AL1' archivelog all not backed up 1 times;"
    The comical thing is when a usual archivlog switch happens it all works fine with no errors or problems.
    The backup also runs with no errors and after searching I found the following entry in Metalink:260040.1, it can't help me because the usual archivelog switch is working fine.
    The environment which I use is an Oracle 10.1.0.4 Database in a Cluster Environment on Windows Server.
    Maybe here is anyone with an idea?

    Thanks for the fast answer.
    I read the metalink entry "Multiple archiver processes FAQ" Note:73163.1 and now I understand why this comment comes.
    The parameter in the database "log_archive_max_processes" is set to 2 (means multiple archive processes).
    I will change paramater back to 1 because the database will handle it by itself if it need more then 1 process.

  • Errors during LIST BACKUP after backup

    Checking my backup logs for ORA- or RMAN- errors brought up this:
    RMAN-06900:   WARNING: unable to generate V$RMAN_STATUS or V$RMAN_OUTPUT row
    RMAN-06901:   WARNING: disabling update of the V$RMAN_STATUS and V$RMAN_OUTPUT rows
      ORACLE error from target database:
    ORA-19921: maximum number of 64 rows exceededThat occurred during a "list backup" command that I run after my BACKUP DATABASE command. Files before and after that section run just fine. Is this something I need to be concerned with? Checking back, it looks like it's been happening in my level0 and level1 incrementals for about a week.
    This is on Oracle EE 10gR2 (10.2.0.2) on RHEL.

    hi,
    These warnings can be ignored and will not affect rman functionality.
    Depending on your RDBMS version :
    - Uptill 10.2.0.4 : Ignore the message
    - 10.2.0.5 or higher :
    Download Patch 8264365 to resolve this issue.
    Bug 8264365 is related to the RMAN-executable only, so NOT to the TARGET or CATALOG databases itself. So you need to patch the ORACLE_HOME used by the RMAN-executable.
    Thanks
    Satish

  • TNS error on RMAN backup

    Hi Experts,
    I'm facing the following error while running my RMAN script.
    Server : Sun Solaris 5.10
    DB : Oracle 10gR2
    RMAN> connect *********
    2> connect *********
    3> run
    4> {
    5> CONFIGURE CHANNEL DEVICE TYPE 'SBT_TAPE'
    6> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    7> configure device type sbt PARALLELISM 12;
    8> allocate channel ch01 type sbt
    9> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    10> allocate channel ch02 type sbt
    11> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    12> allocate channel ch03 type sbt
    13> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    14> allocate channel ch04 type sbt
    15> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    16> allocate channel ch05 type sbt
    17> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    18> allocate channel ch06 type sbt
    19> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    20> allocate channel ch07 type sbt
    21> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    22> allocate channel ch08 type sbt
    23> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    24> allocate channel ch09 type sbt
    25> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    26> allocate channel ch10 type sbt
    27> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    28> allocate channel ch11 type sbt
    29> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    30> allocate channel ch12 type sbt
    31> PARMS 'ENV=(NSR_SERVER=namibia,NSR_DATA_VOLUME_POOL=KBAPS,NSR_CLIENT=kenya)' ;
    32>
    33> catalog controlfilecopy '/hist/archv/PRODCDRS/control_files/control_backup';
    34> backup format 'ctl_%d_%s_%p_%t' controlfilecopy
    '/hist/archv/PRODCDRS/control_files/control_backup';
    35>
    36> backup full filesperset 6 format 'fulldb_%d_%s_%p_%t' (database) ;
    37> backup format 'archv_%d_%s_%p_%t' (archivelog all);
    38>
    39> release channel ch01;
    40> release channel ch02;
    41> release channel ch03;
    42> release channel ch04;
    43> release channel ch05;
    44> release channel ch06;
    45> release channel ch07;
    46> release channel ch08;
    47> release channel ch09;
    48> release channel ch10;
    49> release channel ch11;
    50> release channel ch12;
    51> }
    52>
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    ORA-12528: TNS:listener: all appropriate instances are blocking new connections
    Recovery Manager complete.
    Any input will be highly appreciated.
    Thanks
    ~Pointer~

    Host:root:/orabin/rman$ lsnrctl status
    LSNRCTL for Solaris: Version 10.2.0.1.0 - Production on 06-OCT-2007 01:42:34
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Connecting to (ADDRESS=(PROTOCOL=tcp)(HOST=)(PORT=1521))
    STATUS of the LISTENER
    Alias LISTENER_RMAn
    Version TNSLSNR for Solaris: Version 10.2.0.1.0 - Production
    Start Date 05-AUG-2007 13:51:59
    Uptime 61 days 11 hr. 50 min. 35 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Listener Parameter File /orabin/rman/oracle/product/10.2.0/network/admin/listener.ora
    Listener Log File /orabin/rman/oracle/product/10.2.0/network/log/listener_rman.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=kenya)(PORT=1521)))
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(KEY=EXTPROC0)))
    Services Summary...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PRODCDRS" has 1 instance(s).
    Instance "CDRS", status READY, has 1 handler(s) for this service...
    Service "PRODCDRS_XPT" has 1 instance(s).
    Instance "CDRS", status READY, has 1 handler(s) for this service...
    Service "RMAN" has 2 instance(s).
    Instance "CDRS", status UNKNOWN, has 1 handler(s) for this service...
    Instance "RMAN", status READY, has 1 handler(s) for this service...
    Service "RMANXDB" has 1 instance(s).
    Instance "RMAN", status READY, has 1 handler(s) for this service...
    Service "RMAN_XPT" has 1 instance(s).
    Instance "RMAN", status READY, has 1 handler(s) for this service...
    The command completed successfully
    Regards,
    ~Pointer~

  • Error during offline backup thru DB13 on AIX.

    Dear All,
    Now since 3 weeks i am unable to fire a offline backup on my PRD server, i am able to take a successful online backup on the same server.
    We are using Tivoli backup solution for backups, but the backups are fired using tx-code: DB13. When i check the detailed logs for the error i see the below lines.
    BR0143I Backup type: offline_force
    BR0130I Backup device type: util_file
    BR0109I Files will be saved by backup utility
    BR0289I BRARCHIVE will be started at the end of processing
    BR0134I Unattended mode with 'force' active - no operator confirmation allowed
    BR0280I BRBACKUP time stamp: 2010-03-08 06.30.40
    BR0307I Shutting down database instance RT2 ...
    BR0278E Command output of '/oracle/RT2/102_64/bin/sqlplus':
    SQL*Plus: Release 10.2.0.2.0 - Production on Mon Mar 8 06:30:40 2010
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    SQL> Connected.
    SQL> csh: The file access permissions do not allow the specified action.
    SQL> ORA-01013: user requested cancel of current operation
    SQL> Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.2.0 - 64bit Production
    With the Partitioning and Data Mining options
    BR0280I BRBACKUP time stamp: 2010-03-08 07.30.41
    +BR0279E Return code from '/oracle/RT2/102_64/bin/sqlplus': 0+
    BR0302E SQLPLUS call for database instance RT2 failed
    BR0309E Shutdown of database instance RT2 failed
    BR0056I End of database backup: becswrbx.aff 2010-03-08 07.30.41
    BR0280I BRBACKUP time stamp: 2010-03-08 07.30.41
    BR0054I BRBACKUP terminated with errors
    BR0280I BRBACKUP time stamp: 2010-03-08 07.30.41
    BR0291I BRARCHIVE will be started with options '-U -jid ALGOF20090824063000 -d util_file -c force -cds -p initRT2_tiv_wkly.sap'
    BR0280I BRBACKUP time stamp: 2010-03-08 07.36.23
    BR0292I Execution of BRARCHIVE finished with return code 0
    Please help me on the same.
    Thanks and regards
    Hunky

    Dear Markus,
    The following are the results of ls -l br*
    PRD server results
    -rwsrwxr-x   1 orart2   sapsys      4956090 Nov 13 2007  brarchive
    -rwsrwxr-x   1 orart2   sapsys      5082125 Nov 13 2007  brbackup
    -rwsrwxr-x   1 orart2   sapsys      6621600 Nov 13 2007  brconnect
    -rwxrwxr-x   1 orart2   sapsys      5564662 Nov 13 2007  brrecover
    -rwxrwxr-x   1 orart2   sapsys      2071826 Nov 13 2007  brrestore
    -rwxrwxr-x   1 orart2   sapsys      6841991 Nov 13 2007  brspace
    -rwsrwxr-x   1 orart2   sapsys      2710864 Nov 13 2007  brtools
    DEV server results
    -rwsrwxr-x   1 orart1   dba         5019199 Jun 12 2008  brarchive
    -rwsrwxr-x   1 orart1   dba         5146308 Jun 12 2008  brbackup
    -rwsrwxr-x   1 orart1   dba         6686520 Jun 12 2008  brconnect
    -rwxrwxr-x   1 orart1   dba         5614646 Jun 12 2008  brrecover
    -rwxrwxr-x   1 orart1   dba         2109311 Jun 12 2008  brrestore
    -rwxrwxr-x   1 orart1   dba         6911788 Jun 12 2008  brspace
    -rwsrwxr-x   1 orart1   dba         2751018 Jun 12 2008  brtools
    And also i have checked with the permissions as suggested by  Mishra, i dont see a great difference among the file permissions.
    Can you be more precise about which files have the s-bit in the bin and lib directories.I see a lot of files and i did verify to an extent and saw that there are no changes in the file permissions, yet again i might have missed on few things.
    I have also logged in as sid<adm> user and ran br stats which was completed successfully and i have also logged into SQL and ran few select queries, which fetch me the results.
    I request all to kindly further help me on this.
    Thanks and regards
    Hunky

  • Error   during DEV backup PSAPSR3 is already in backup status

    Dear All,
    When i m taking development backup.It generating the error PSAPSR3 is already in backup status.Plz tell me how to resolve this issue.
    LOG file is attached.
    BR0051I BRBACKUP 7.00 (13)                                                                               
    BR0189W Expiration period equal 0 - backup volumes could be immediately overwritten                                                                               
    BR0055I Start of database backup: bdxxiprp.ant 2008-05-13 17.40.29                                                                               
    BR0477I Oracle pfile E:\oracle\MRD\102\database\initMRD.ora created from spfile E:\oracle\MRD\102\database\spfileMRD.ora                                                                               
    BR0280I BRBACKUP time stamp: 2008-05-13 17.40.32                                                                               
    BR0319I Control file copy created: G:\oracle\MRD\sapbackup\CNTRLMRD.DBF 24461312                                                                               
    BR0328E Database file Q:\SAPDATA1\SR3_1\SR3.DATA1 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file Q:\SAPDATA1\SR3_2\SR3.DATA2 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file Q:\SAPDATA1\SR3_3\SR3.DATA3 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file Q:\SAPDATA1\SR3_4\SR3.DATA4 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file G:\ORACLE\MRD\SAPDATA1\SR3_5\SR3.DATA5 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_6\SR3.DATA6 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_7\SR3.DATA7 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_8\SR3.DATA8 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_9\SR3.DATA9 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file H:\ORACLE\MRD\SAPDATA2\SR3_10\SR3.DATA10 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_11\SR3.DATA11 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_12\SR3.DATA12 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_13\SR3.DATA13 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_14\SR3.DATA14 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file I:\ORACLE\MRD\SAPDATA3\SR3_15\SR3.DATA15 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_16\SR3.DATA16 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_17\SR3.DATA17 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_18\SR3.DATA18 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_19\SR3.DATA19 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0328E Database file J:\ORACLE\MRD\SAPDATA4\SR3_20\SR3.DATA20 of tablespace PSAPSR3 is already in backup status                                                                               
    BR0056I End of database backup: bdxxiprp.ant 2008-05-13 17.40.35                                                                               
    BR0280I BRBACKUP time stamp: 2008-05-13 17.40.35                                                                               
    BR0054I BRBACKUP terminated with errors          
    Thank and Regard's
    Adil

    Hi ,
    Are you taken backup successfully , if not pls check below things.
    1,tablespace PSAPSR3 is already in backup status, This error usually occurs when you are running an Online Backup and because of some previous failed backups the table spaces are still under back up status.
    pls check if any backup is running or not
    ps -ef|grep brbackup .
    2 , check any lock file is created under oracl/SID/sapbackup if s remove lock file from the directory .
    3 , login into DB
    > sqlplus /nolog
    SQL*Plus: Release 10.2.0.4.0 - Production on Tue Oct 19 14:57:23 2010
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    SQL> connect /as sysdba
    Connected.
    SQL> select status from v$backup;
    check the status it should not be ACTIVE .
    from your case Tablespace PSAPSR3 is already in backup status so login into DB
    > sqlplus /nolog
    SQL*Plus: Release 10.2.0.4.0 - Production on Tue Oct 19 14:57:23 2010
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    SQL> connect /as sysdba
    Connected.
    alter tablespace PSAPSR3 end backup;
    SQL> alter tablespace PSAPSR3 end backup;
    Tablespace altered.
    SQL> select status from v$backup;
    STATUS
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    STATUS
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    STATUS
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    STATUS
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    NOT ACTIVE
    41 rows selected.
    SQL>
    After complete the above activity pls fire the backup .
    It might be resolve your issue .
    Edited by: satheesh0812 on Oct 19, 2010 11:54 AM

  • Error during PST backup process

    Hi,
    I am running 3 office 365 exchange accounts in Outlook 2010.
    For 1 of the accounts, when I try to make a PST backup, midway thru a message pops out, saying something like this (I cant recall the exact words but it is to this effect):
    "an object was not found, process failed"
    But the PST file is still created. Does this mean the PST file is missing some of my mails, contacts, calendar items, notes etc?
    Appreciate any & all immediate assistance.
    Regards,
    Doshi

    Hi,
    If you are trying to backup PST file from Outlook, I suggest to post your issue to
    Outlook forum for more professional help.
    If there are any Exchange Online issue, please post your question to
    Exchange Online Forum.
    Thanks for your understanding.
    Best Regards.

  • Getting error during posting A/P invoice and  A/P credit memos

    We are intermittently getting this error during A/P invoice.
           When i am doing the full cycle of Purchase like
            Purchase Order
            Goods Receipts PO
           A/P. Invoice.
         At the time of A/P. Invoice the date has been coppied from the Goods Receipt's PO, i am getting the error, this error not comes regularly, only for few transcations,
         Please guide to me.
             Error is
           " No matching records found 'G/L Accounts' (OACT) (ODBC-2028)
                                  Message 131 - 183 "
              Patch level is 27 and version is 2005B

    Hello Prasad,
    Before add A/P invoice, are you changing the price to a lower price, either by changing amount in the 'price' column or by giving a higher discount at the header level ? As far as I know, in a non continuous stock system company with the 'Use Negative Amount for Reverse Transaction' setting not ticked.
    Another solution could be as follows (just check in your SAP B1 installation) :
    When the user chooses User Defined Chart of Accounts under Administration -> System Initialization -> Company details -> Basis Initialization tab , the default accounts remain in the "G/L Account Determination", "Define Tax", "Define Warehouse" windows under Administration -> Definitions -> Financials and Administration -> Definitions -> Inventory. User has to check and define all accounts.
    My reference is SAP notes 771489.
    Another related issue is whether you are using rounding when adding a marketing document. If yes, you must define rounding account in 'Administration' > 'System Initialization' ->'G/L Account Determination' -> 'General' tab page under "Rounding Account" field.
    Rgds,

  • Essbase Version 11 Error During Export

    Hi,
    I have just installed Hyperion Essbase version 11 on windows 2003 Server, It’s a fresh install on new machine. I am getting following error during nightly backup.
    After "Calc All" we export data to the following location. Hyperion\APP\DB. Same Maxl script works fine on version 7 of Essbase. If i export data manually its works fine, only issue i have during nightly back (Automated). Data size is 1.4 GB; Please let me know if you need some more information.
    Error.. *ERROR - 1005000 - Ascii Backup: Failed to open [\PLAN\TEST\TEST_Export_AllData_1.txt]..*
    Maxl Script:
    MAXL> export database "PLAN"."TEST" all data to data_file
    2>      "'\\PLAN\\TEST\\TEST_Export_AllData_1.txt'",
    3>      "'\\PLAN\\TEST\\TEST_Export_AllData_2.txt'";
    Error:
    OK/INFO - 1019020 - Writing Free Space Information For Database [TEST].
    OK/INFO - 1005029 - Parallel export enabled: Number of export threads [2].
    *ERROR - 1005000 - Ascii Backup: Failed to open [\PLAN\TEST\TEST_Export_AllData_1.txt]..*
    MaxL Shell completed with error
    Thank you,
    T.Khan

    I tried with other path and it works. I really appreciate all your help. I used following maxl
    export database "Plan"."Test" all data to data_file
    C:\Hyperion\products\Essbase\EssbaseServer\app\PLAN\TEST\Export_AllDtata_1.txt,
    C:\Hyperion\products\Essbase\EssbaseServer\app\PLAN\TEST\Export_AllDtata_2.txt;
    What changes I need to make on my maxl. Do I need to make any changes on Variables? Here is my current Maxl
    /*      Export Database                              */
    /* Environment Variables: (set by calling script)               */
    /* $ess_UserName      - Essbase username                     */
    /* $ess_Password     - Essbase password                    */
    /* $ess_Server          - Essbase server                    */
    /* Local variables: (set by MaxL script)                    */
    /* $APP               - Essbase application ($1 positional parameter)     */
    /* $DB               - Essbase database ($2 positional parameter)     */
    /* Any error returned from a MaxL command causes the               */
    /* logic to branch to an error exit at end of the script           */
    /* set local variables to values of positional parameters */
    set APP=$1;
    set DB=$2;
    /* Login to Essbase */
    login $ess_UserName $ess_Password on $ess_Server;
    /* Export database in parallel to the database directory - all data */
    export database "$APP"."$DB" all data to data_file
         "'\\$APP\\$DB\\$(DB)_Export_AllData_1.txt'",
         "'\\$APP\\$DB\\$(DB)_Export_AllData_2.txt'";
    iferror 'ERROREXIT';          
    /* Normal Exit */
    Thank You
    T.Khan

  • ORA-01858 error in RMAN during backup backupset format '/test/rman/%U'

    Hello!
    I am trying to perform bacup using command
    RMAN> backup backupset completed after 'sysdate-1' format '/tmp/test/%U';
    as described in:
    asmcmd scripts
    All backupsets are copied to /tmp/test/.
    Everything is going fine except the last message from RMAN:
    input backupset count=5342 stamp=660348635 creation_time=17-JUL-08
    channel ORA_DISK_1: starting piece 1 at 18-JUL-08
    piece handle=/tmp/test/6ujlo7mr_1_2 comment=NONE
    channel ORA_DISK_1: finished piece 1 at 18-JUL-08
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15
    input backupset count=5343 stamp=660348722 creation_time=17-JUL-08
    channel ORA_DISK_1: starting piece 1 at 18-JUL-08
    piece handle=/tmp/test/6vjlo7pi_1_2 comment=NONE
    channel ORA_DISK_1: finished piece 1 at 18-JUL-08
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:15
    input backupset count=5344 stamp=660348810 creation_time=17-JUL-08
    channel ORA_DISK_1: starting piece 1 at 18-JUL-08
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on ORA_DISK_1 channel at 07/18/2008 10:59:48
    ORA-01858: a non-numeric character was found where a numeric was expected
    I suspect that rman is performing, at the end of backup, some internal work (store something in control file based catalog or so) and catches ORA-01858.
    The destination catalog is local catalog (not nfs mounted remote dir).
    RMAN is spawned from the same node the Oracle Database is running on.
    I tested it on two servers.
    Error occurs on both of them:
    version 10g (ia-32) - flash recovery area on filesystem
    and version 11g (Aix) - flash on ASM
    RMAN-oracle10> show all ;
    using target database controlfile instead of recovery catalog
    RMAN configuration parameters are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1;
    CONFIGURE BACKUP OPTIMIZATION OFF;
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK BACKUP TYPE TO COMPRESSED BACKUPSET PARALLELISM 1;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/opt/oracle/10gSE/dbs/snap_dbname.dbf'; # default
    RMAN-oracle11> show all ;
    using target database control file instead of recovery catalog
    RMAN configuration parameters for database with db_unique_name O2DB are:
    CONFIGURE RETENTION POLICY TO REDUNDANCY 1; # default
    CONFIGURE BACKUP OPTIMIZATION OFF; # default
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP ON;
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '%F'; # default
    CONFIGURE DEVICE TYPE DISK PARALLELISM 1 BACKUP TYPE TO COMPRESSED BACKUPSET;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE MAXSETSIZE TO UNLIMITED; # default
    CONFIGURE ENCRYPTION FOR DATABASE OFF; # default
    CONFIGURE ENCRYPTION ALGORITHM 'AES128'; # default
    CONFIGURE COMPRESSION ALGORITHM 'BZIP2'; # default
    CONFIGURE ARCHIVELOG DELETION POLICY TO NONE; # default
    CONFIGURE SNAPSHOT CONTROLFILE NAME TO '/u01/app/oracle/product/11.1.0/dbname_1/dbs/snapcf_dbname.f';
    How to diagnose the problem?
    How check what RMAN is exactly doing when error occurs?
    Or maybe there is better way to achieve this:
    I want to move backupset from asm realm to remote server without storing them on local, non asm disk.
    Any suggestions kindly welcome!
    Thanx!

    Solution:
    NLS_DATE_FORMAT mus be set mannualy;
    export NLS_DATE_FORMAT='YYYY_MM_DD'
    solved the problem..
    https://metalink.oracle.com/metalink/plsql/f?p=130:15:12788270042070262572::::p15_database_id,p15_docid,p15_show_header,p15_show_help,p15_black_frame,p15_font:BUG,6198368,1,1,1,helvetica
    Metalinking before posting is the rule of thumb : )

  • Error while taking backup  through RMAN in 10g XE

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

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

  • Error , ORA-19809 & ORA-19804 While restoring RMAN backup .

    Hi Experts,
    I am restoring production RMAN backup to UAT . Using below steps
    1)rman target=/
    2)RMAN> startup nomount;
    3) RMAN> restore controlfile from '/orabkdump/Rman_Bak/ACME/bkup_CTLFL_2206101206.ctl';
    Starting restore at 05-AUG-10
    using target database control file instead of recovery catalog
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=3 device type=DISK
    channel ORA_DISK_1: copied control file copy
    output file name=+DATA_ACME/acme/controlfile/current.256.724845209
    output file name=+DATA_ACME/acme/controlfile/current.257.724845209
    Finished restore at 05-AUG-10
    4) RMAN> alter database mount;
    database mounted
    released channel: ORA_DISK_1
    5) RMAN> CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/orabkdump/Rman_Bak/ACME/%F';
    old RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/orabkdump/Rman_Bak/ACME1/current/%F';
    new RMAN configuration parameters:
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/orabkdump/Rman_Bak/ACME/%F';
    new RMAN configuration parameters are successfully stored
    6) RMAN> CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/orabkdump/Rman_Bak/ACME/%U';
    old RMAN configuration parameters:
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/orabkdump/Rman_Bak/ACME/%U';
    new RMAN configuration parameters:
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/orabkdump/Rman_Bak/ACME/%U';
    new RMAN configuration parameters are successfully stored
    released channel: ORA_DISK_1
    7) RMAN> CATALOG START WITH '/orabkdump/Rman_Bak/ACME';
    searching for all files that match the pattern /orabkdump/Rman_Bak/ACME
    List of Files Unknown to the Database
    =====================================
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722347594_1_1
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722347939_2_1
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722348365_3_1
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722348681_4_1
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722349076_5_1
    File Name: /orabkdump/Rman_Bak/ACME/bkup_CTLFL_2206101206.ctl
    File Name: /orabkdump/Rman_Bak/ACME/c-1904932673-20100622-00
    File Name: /orabkdump/Rman_Bak/ACME/dbsnap.log
    File Name: /orabkdump/Rman_Bak/ACME/rman_Tuesday_LVL_0.log
    File Name: /orabkdump/Rman_Bak/ACME/rman_Tuesday_LVL_0.trc
    Do you really want to catalog the above files (enter YES or NO)? YES
    cataloging files...
    cataloging done
    List of Cataloged Files
    =======================
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722347594_1_1
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722347939_2_1
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722348365_3_1
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722348681_4_1
    File Name: /orabkdump/Rman_Bak/ACME/ACME_DB_722349076_5_1
    File Name: /orabkdump/Rman_Bak/ACME/bkup_CTLFL_2206101206.ctl
    File Name: /orabkdump/Rman_Bak/ACME/c-1904932673-20100622-00
    List of Files Which Where Not Cataloged
    =======================================
    File Name: /orabkdump/Rman_Bak/ACME/dbsnap.log
    RMAN-07517: Reason: The file header is corrupted
    File Name: /orabkdump/Rman_Bak/ACME/rman_Tuesday_LVL_0.log
    RMAN-07517: Reason: The file header is corrupted
    File Name: /orabkdump/Rman_Bak/ACME/rman_Tuesday_LVL_0.trc
    RMAN-07517: Reason: The file header is corrupted
    8) RMAN> run {
    2> set until sequence 1789 thread 2;
    3> restore database;
    4> recover database;
    5> sql 'alter database open resetlogs';
    6> }
    executing command: SET until clause
    Starting restore at 06-AUG-10
    using channel ORA_DISK_1
    Finished restore at 06-AUG-10
    Starting recover at 06-AUG-10
    using channel ORA_DISK_1
    starting media recovery
    channel ORA_DISK_1: starting archived log restore to default destination
    channel ORA_DISK_1: restoring archived log
    archived log thread=1 sequence=2803
    channel ORA_DISK_1: restoring archived log
    archived log thread=2 sequence=6051
    channel ORA_DISK_1: restoring archived log
    archived log thread=1 sequence=2804
    channel ORA_DISK_1: reading from backup piece /orabkdump/Rman_Bak/ACME/ACME_AL_726286927_57_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of recover command at 08/06/2010 23:10:38
    ORA-19870: error while restoring backup piece /orabkdump/Rman_Bak/ACME/ACME_AL_726286927_57_1
    ORA-19809: limit exceeded for recovery files
    ORA-19804: cannot reclaim 49283072 bytes disk space from 5218762752 limit
    ** My UAT database should be in noarchival mode . Generally such errors have been observed during backup , but have no clue why they occurred during recovery .Please advice .
    Thanks
    Edited by: user11981514 on Aug 6, 2010 9:46 AM

    Hi,
    Since the error ORA-19809 indicates the lack of space in flash recovery area during the media recovery, I suggested increasing the value of the parameter DB_RECOVERY_FILE_DEST_SIZE.
    Yes, during the media recovery the RMAN will restore the archived log to the default destination (only if the required archived logs are not already on the disks).You can confirm the restore location of the archived log in RMAN restore log/destination specified by parameters log_archive_dest_1/db_recovery_file_dest.
    Regards,
    Vaibhav

Maybe you are looking for

  • When typing a Contacts group into Mail address, it inserts duplicates

    MacBook Air using Mavericks. I have a Group set up in Contacts. When I type the name of that group into the BCC field in Mail, I get every name in the group at least twice.

  • How to monitor network traffic on an IP alias?

    Does anybody happen to know how I can monitor the traffic on an IP alias on say igb0:1 using iftop or something similar? iftop (pcap, I guess is the issue here) doesn't seem to cope with IP aliases. Cheers

  • FireFox works, but nothing else with TC

    Hello! I recently have begun experiencing problems with my 2 week old TC. I just moved and I am receiving my net from a rental apartment in a college town. The plug into the net is simply an ethernet jack. I don't know who provides the service. My TC

  • Fix for Envy TouchSmart 15-j078ca (or any other laptop) sound not working

    If you are having problems with the sound on your Envy 15 laptop (speaker/headphone jack not working), there is a straightforward way to fix your problems. First go through these simple steps (they could very well save you some time if they work): 1)

  • EH&S: EA-PLm activation. EH&S missing under SAP menu

    Hi all, The EA-PLM extension (in a development environment)was activated (not by me) but EH&S folder is missing under logistics in the SAP menu. I had also made this activation (by me) before in a sandbox environment and I was able to see EH&S in SAP