Backup error; datafiles is already in backup status

Dear Experts,
While we are starting online db backup, we are getting following errors;
BR0280I BRBACKUP time stamp: 2009-07-13 02.16.07
BR0319I Control file copy created: /oracle/TBP/sapbackup/cntrlTBP.dbf 34783232
BR0328E Database file /oracle/TBP/sapdata1/system_1/system.data1 of tablespace SYSTEM is already in backup status
BR0328E Database file /oracle/TBP/sapdata1/undo_1/undo.data1 of tablespace PSAPUNDO is already in backup status
BR0328E Database file /oracle/TBP/sapdata1/sysaux_1/sysaux.data1 of tablespace SYSAUX is already in backup status
BR0328E Database file /oracle/TBP/sapdata2/sr3_1/sr3.data1 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata3/sr3700_1/sr3700.data1 of tablespace PSAPSR3700 is already in backup status
BR0328E Database file /oracle/TBP/sapdata4/sr3usr_1/sr3usr.data1 of tablespace PSAPSR3USR is already in backup status
BR0328E Database file /oracle/TBP/sapdata4/sr3700_2/sr3700.data2 of tablespace PSAPSR3700 is already in backup status
BR0328E Database file /oracle/TBP/sapdata1/sr3_2/sr3.data2 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata2/sr3_3/sr3.data3 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata3/sr3_4/sr3.data4 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata4/sr3_5/sr3.data5 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata1/sr3_6/sr3.data6 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata3/sr3_7/sr3.data7 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata4/sr3_8/sr3.data8 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata2/sr3700_3/sr3700.data3 of tablespace PSAPSR3700 is already in backup status
BR0328E Database file /oracle/TBP/sapdata1/sr3_9/sr3.data9 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata2/sr3_10/sr3.data10 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata3/sr3_11/sr3.data11 of tablespace PSAPSR3 is already in backup status
BR0328E Database file /oracle/TBP/sapdata4/sr3_12/sr3.data12 of tablespace PSAPSR3 is already in backup status
BR0056I End of database backup: beazuchh.anf 2009-07-13 02.16.08
BR0280I BRBACKUP time stamp: 2009-07-13 02.16.08
I've tried to take datafiles out of backup mode with following commands ;
SQL> select * from v$backup;
     FILE# STATUS                CHANGE# TIME
         1 ACTIVE              492340220 05-JUL-09
         2 ACTIVE              492340220 05-JUL-09
         3 ACTIVE              492340220 05-JUL-09
         4 ACTIVE              492340220 05-JUL-09
         5 ACTIVE              492340220 05-JUL-09
         6 ACTIVE              492340220 05-JUL-09
         7 ACTIVE              492340220 05-JUL-09
         8 ACTIVE              492340220 05-JUL-09
         9 ACTIVE              492340220 05-JUL-09
        10 ACTIVE              492340220 05-JUL-09
        11 ACTIVE              492340220 05-JUL-09
     FILE# STATUS                CHANGE# TIME
        12 ACTIVE              492340220 05-JUL-09
        13 ACTIVE              492340220 05-JUL-09
        14 ACTIVE              492340220 05-JUL-09
        15 ACTIVE              492340220 05-JUL-09
        16 ACTIVE              492340220 05-JUL-09
        17 ACTIVE              492340220 05-JUL-09
        18 ACTIVE              492340220 05-JUL-09
        19 ACTIVE              492340220 05-JUL-09
19 rows selected.
SQL> select 'alter database datafile '
  2  || file#  || ' end backup;'
  3  from v$backup where status = 'ACTIVE';
'ALTERDATABASEDATAFILE'||FILE#||'ENDBACKUP;'                                   
alter database datafile 1 end backup;                                          
alter database datafile 2 end backup;                                          
alter database datafile 3 end backup;                                          
alter database datafile 4 end backup;                                          
alter database datafile 5 end backup;                                          
alter database datafile 6 end backup;                                          
alter database datafile 7 end backup;                                          
alter database datafile 8 end backup;                                          
alter database datafile 9 end backup;                                          
alter database datafile 10 end backup;                                         
alter database datafile 11 end backup;                                         
'ALTERDATABASEDATAFILE'||FILE#||'ENDBACKUP;'                                   
alter database datafile 12 end backup;                                         
alter database datafile 13 end backup;                                         
alter database datafile 14 end backup;                                         
alter database datafile 15 end backup;                                         
alter database datafile 16 end backup;                                         
alter database datafile 17 end backup;                                         
alter database datafile 18 end backup;                                         
alter database datafile 19 end backup;                                         
when we execute above script we are getting following errors;
alter database datafile 1 end backup
ERROR at line 1:
ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
ORA-01234: cannot end backup of file 1 - file is in use or recovery
ORA-01110: data file 1: '/oracle/TBP/sapdata1/system_1/system.data1'
alter database datafile 2 end backup
ERROR at line 1:
ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
ORA-01234: cannot end backup of file 2 - file is in use or recovery
ORA-01110: data file 2: '/oracle/TBP/sapdata1/undo_1/undo.data1'
alter database datafile 3 end backup
ERROR at line 1:
ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
ORA-01234: cannot end backup of file 3 - file is in use or recovery
ORA-01110: data file 3: '/oracle/TBP/sapdata1/sysaux_1/sysaux.data1'
alter database datafile 4 end backup
ERROR at line 1:
ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
ORA-01234: cannot end backup of file 4 - file is in use or recovery
ORA-01110: data file 4: '/oracle/TBP/sapdata2/sr3_1/sr3.data1'
alter database datafile 5 end backup
ERROR at line 1:
ORA-01235: END BACKUP failed for 1 file(s) and succeeded for 0
ORA-01234: cannot end backup of file 5 - file is in use or recovery
ORA-01110: data file 5: '/oracle/TBP/sapdata3/sr3700_1/sr3700.data1'
How can we take datafile out of backup mode ?
Regards
Atakan

Hi,
You can take out tablespace from backp mode from below sql.
SQL>ALTER TABLESPACE <tablespace name> END BACKUP;
Check Re: backup problem
Hope this helps
Thanks
Sushil

Similar Messages

  • 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

  • Tablespace PSAPSR3 is already in backup status

    Hi!
    I have planed an ALL-ONLINE Backup from DB13.
    What does it mean and how can I proceed to backuo these tablespaces?
    Here is the error I am getting:
    BR0328E Database file E:\ORACLE\DEV\SAPDATA1\SR3_1\SR3.DATA1 of tablespace PSAPSR3 is already in backup status
    BR0328E Database file E:\ORACLE\DEV\SAPDATA1\SR3_2\SR3.DATA2 of tablespace PSAPSR3 is already in backup status
    And second question:
    <b>Which form should have the parameter stage_root_dir, if a do a backup from windows to unix via FTP?</b>
    stage_root_dir=SAP/backup or
    stage_root_dir=SAP\backup
    Thank you very much
    regards

    Hi ,
    Are you taken backup successfully , if not pls check below things.
    1,tablespace PSAPSR3 is already in backup status is caused last backup is not success.
    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 .

  • My Time machine won't back up.  Recently updated to OS x 10.7.5.  Error message is as follows:  "The backup disk image "/Volumes/Time Machine Backup/Scott's MacBook Pro.sparsebundle" is already in use."  What is wrong and how do I fix it?  Thanks.

    My Time machine won't back up.  Recently updated to OS x 10.7.5.  Error message is as follows:  "The backup disk image “/Volumes/Time Machine Backup/Scott’s MacBook Pro.sparsebundle” is already in use."  What is wrong and how do I fix it?  Thanks.

    Have you tried restarting the computer? Also, see Time Machine Error from this pages sidebar under More Like This.

  • Screen with the error "S.M.A.R.T. Status BAD, Backup and Replace" Press F1 to Resum - Q180

    Hello!
    always at start up i have a screen with the error "S.M.A.R.T. Status BAD, Backup and Replace" Press F1 to Resum - Q180
    did anyone know how to solve
    i have changed the batterie to but no sucess
    thx
    Peter
    Solved!
    Go to Solution.

    smart is telling you that your hdd is failing it may still work but for how long who knows
    http://en.wikipedia.org/wiki/S.M.A.R.T.
    Thx dave
    yoga 2, lenovo b540
    3 custom gaming pc systems

  • TS1550 My time capsule will not back up. There is a time machine error message that states "The backup disk image "/volumes/Backup/Jane's MacBook Pro.sparsebundle" is already in use. How do I correct this problem?

    My time machine will not back up. I get a Time Machine Error message that reads: "The backup disk image "/Volumes/Backup/(myname)'sMacBook Pro.sparsebundle" is already in use.
    I have not been able to back up for two weeks, I think this occurred after an update to the operating system, but I am unsure.
    How do I correct this problem?

    Have you tried restarting the computer? Also, see Time Machine Error from this pages sidebar under More Like This.

  • Error while taking Full DB Backup

    Hi,
    We had Multiplexed the Archive Log File to default location(Flash Recovery Area) and log_archive_dest_1=/u02/app/oracle/oradata/orcl/archive
    As too much of archive log's are generated we had removed the log_archive_dest_1.
    We had scheduled full DB backup every sunday and incremental DB backup everyday(midnight) through OEM.
    I am backing up all the archive log's and after each backup (incremental and full DB backup) we are deleting all Archive logs backed up.
    The Full DB Backup failed as it is still trying to backup archive logs from log_archive_dest_1(/u02/app/oracle/oradata/orcl/archive)
    Please find below the error log file generated after backup failed.
    RMAN> backup device type disk format='/u02/backup/scheduled/Full-ARC_%d_%t_%s_%p' tag 'BACKUP_ORCL_000022_091608120501' archivelog all not backed up;
    Starting backup at 16-SEP-08
    current log archived
    using channel ORA_DISK_1
    using channel ORA_DISK_2
    skipping archive log file */u02/app/oracle/oradata/orcl/archive*/1_8459_639421762.dbf; already backed on 01-SEP-08
    skipping archive log file /u02/app/oracle/oradata/orcl/archive/1_8460_639421762.dbf; already backed on 01-SEP-08
    skipping archive log file /u02/app/oracle/oradata/orcl/archive/1_8461_639421762.dbf; already backed on 01-SEP-08
    skipping archive log file /u02/app/oracle/oradata/orcl/archive/1_8462_639421762.dbf; already backed on 01-SEP-08
    archived log /u02/app/oracle/oradata/orcl/archive/1_8463_639421762.dbf not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 8463
    archived log /u02/app/oracle/oradata/orcl/archive/1_8464_639421762.dbf not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 8464
    archived log /u02/app/oracle/oradata/orcl/archive/1_8465_639421762.dbf not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 8465
    archived log /u02/app/oracle/oradata/orcl/archive/1_8466_639421762.dbf not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 8466
    archived log /u02/app/oracle/oradata/orcl/archive/1_8467_639421762.dbf not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 8467
    Please suggest me the possible outcome
    Thanks and Regards
    Amith

    Hi,
    The Archive log's has occupied full Hard Disk space so i changed the status of DB to NoArchive Log mode and deleted all the archive files available at "/u02/app/oracle/oradata/orcl/archive" using OS command.
    Now I changed the DB to Archive Log Mode and now using RMAN to delete All Archive files which are backed up.
    backup incremental level 0 cumulative device type disk tag '%TAG' database include current controlfile;
    backup device type disk tag '%TAG' archivelog all not backed up delete all input;
    Thanks
    Amith
    Edited by: amith r on Sep 17, 2008 3:00 PM

  • I can only backup the datafiles but not the control files and SPFiles

    Hello, all,
    I am using the Oracle 10g on a linux server which runs redhat 9. I want to backup the whole database to the disk, but not the flash recovery area. It is /rawdata. I will show how I configure the backup part in EM. Is there anything wrong?
    1. the ARCHIVELOG is on
    2. under Administration, in the All Initialization Parameters, I remove the string value of “log_archive_dest_1”. After that, I go to the SPFile and remove the string value of “log_archive_dest_1”
    3. configure backup settings and policies. The Disk Backup Location field is set to /rawdata. Select Image Copy for Disk Backup type. Test Disk backup is successful.
    4. go to Policy page. Select “Automatically backup the control file and server parameter file (SPFile) with every backup and database structural change.) input /rawdata into the filed: Autobackup Disk Location
    Select “Optimize the whole database backup by skipping unchanged files such as read-only and offline datafiles that have been backed up”
    Select “Retain backups that are necessary for a recovery to any time whin the specified number of days (point-in-time recovery)
    Accept the default of 31days
    5. go to Schedul Backup
    6. select customized from the backup Strategy drop-down menu. Select the Whole Database
    7. in the Options page, select “Full backup” in the Backup Type section. Select “Online Backup” in the Backup Mode section. Select “back up all archived logs on disk” in the Advanced section.
    8. in the Setting page, select “Disk”
    9. in the Schedule page, accept the default job name and description. Select Immediately to execute the job immediately.
    10. just submit the job.
    After several minutes, the job is failed while the Prebackup and Postbackup are succeeded. The log says:
    Recovery Manager: Release 10.1.0.2.0 - Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    RMAN>
    connected to target database: ORCL10G (DBID=770753237)
    using target database controlfile instead of recovery catalog
    RMAN>
    Starting backup at 11-OCT-06
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=268 devtype=DISK
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00001 name=+DATADG/orcl10g/system01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-SYSTEM_FNO-1_68hvin50 tag=BACKUP_ORCL10G_000_101106111844 recid=108 stamp=603544772
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:45
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00003 name=+DATADG/orcl10g/sysaux01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-SYSAUX_FNO-3_69hvin6d tag=BACKUP_ORCL10G_000_101106111844 recid=109 stamp=603544813
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00005 name=+DATADG/orcl10g/example01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-EXAMPLE_FNO-5_6ahvin7g tag=BACKUP_ORCL10G_000_101106111844 recid=110 stamp=603544829
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00002 name=+DATADG/orcl10g/undotbs01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-UNDOTBS1_FNO-2_6bhvin7v tag=BACKUP_ORCL10G_000_101106111844 recid=111 stamp=603544835
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:08
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00004 name=+DATADG/orcl10g/users01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-USERS_FNO-4_6chvin87 tag=BACKUP_ORCL10G_000_101106111844 recid=112 stamp=603544841
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
    Finished backup at 11-OCT-06
    Starting Control File and SPFILE Autobackup at 11-OCT-06
    piece handle=/rawdata/c-770753237-20061011-05 comment=NONE
    Finished Control File and SPFILE Autobackup at 11-OCT-06
    RMAN>
    Starting backup at 11-OCT-06
    current log archived
    using channel ORA_DISK_1
    archived log /rawdata/arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_cqhvf270 not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 1062
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 10/11/2006 11:20:54
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
    ORA-19625: error identifying file /rawdata/arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_puhkv41f
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    RMAN>
    Recovery Manager complete.
    It seems the system tries to find a file “arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_cqhvf270” in /rawdata. I just can not understand.
    What should I do? Any advice is highly appreciated!
    Qian

    the string value in the field of 'log_archive_dest_1" under "All Initialization parameters" is "LOCATION=+DATADG/orcl10g/". The same value was in the field under SPFile.
    I reset these values and tried to backup the whole database. The same error appeared. The log says:
    Recovery Manager: Release 10.1.0.2.0 - Production
    Copyright (c) 1995, 2004, Oracle. All rights reserved.
    RMAN>
    connected to target database: ORCL10G (DBID=770753237)
    using target database controlfile instead of recovery catalog
    RMAN>
    Starting backup at 11-OCT-06
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=245 devtype=DISK
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00001 name=+DATADG/orcl10g/system01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-SYSTEM_FNO-1_6ghvj9rd tag=BACKUP_ORCL10G_000_101106043753 recid=114 stamp=603563922
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:45
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00003 name=+DATADG/orcl10g/sysaux01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-SYSAUX_FNO-3_6hhvj9sq tag=BACKUP_ORCL10G_000_101106043753 recid=115 stamp=603563963
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:35
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00005 name=+DATADG/orcl10g/example01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-EXAMPLE_FNO-5_6ihvj9tu tag=BACKUP_ORCL10G_000_101106043753 recid=116 stamp=603563977
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:15
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00002 name=+DATADG/orcl10g/undotbs01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-UNDOTBS1_FNO-2_6jhvj9ud tag=BACKUP_ORCL10G_000_101106043753 recid=117 stamp=603563984
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:07
    channel ORA_DISK_1: starting datafile copy
    input datafile fno=00004 name=+DATADG/orcl10g/users01.dbf
    output filename=/rawdata/data_D-ORCL10G_I-770753237_TS-USERS_FNO-4_6khvj9uk tag=BACKUP_ORCL10G_000_101106043753 recid=118 stamp=603563990
    channel ORA_DISK_1: datafile copy complete, elapsed time: 00:00:03
    Finished backup at 11-OCT-06
    Starting Control File and SPFILE Autobackup at 11-OCT-06
    piece handle=/rawdata/c-770753237-20061011-07 comment=NONE
    Finished Control File and SPFILE Autobackup at 11-OCT-06
    RMAN>
    Starting backup at 11-OCT-06
    current log archived
    using channel ORA_DISK_1
    archived log /rawdata/arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_cqhvf270 not found or out of sync with catalog
    trying alternate file for archivelog thread 1, sequence 1062
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup command at 10/11/2006 16:40:05
    RMAN-06059: expected archived log not found, lost of archived log compromises recoverability
    ORA-19625: error identifying file /rawdata/arch_D-ORCL10G_id-770753237_S-1062_T-1_A-586368151_puhkv41f
    ORA-27037: unable to obtain file status
    Linux Error: 2: No such file or directory
    Additional information: 3
    RMAN>
    Recovery Manager complete.
    Why the system keeps trying to find files under /rawdata? It is the destination, not the source.
    Any help is appreciated!
    Qian
    Message was edited by:
    QianChen

  • DB13  full database online tape backup error

    Dear all Experts
    I am trying to take online  backup of newly installed  ECC development system with AIX6.1,Oracle 11g,tape inserted and Initialized successfully in DB13 ,but I have tried to fire the backup of online backup i am getting error
    please find the below log and  can anyone help me out??
    initGDV.sap file setup
    is
    backup_mode = all
    restore_mode = all
    backup_type = online
    backup_dev_type = tape
    backup_root_dir = /oracle/GDV/sapbackup
    stage_root_dir = /oracle/GDV/sapbackup
    compress_cmd = "compress -c $ > $"
    uncompress_cmd = "uncompress -c $ > $"
    compress_dir = /oracle/GDV/sapreorg
    archive_copy_dir = /oracle/GDV/sapbackup
    archive_stage_dir = /oracle/GDV/sapbackup
    stage_copy_cmd = rcp
    pipe_copy_cmd = rsh
    cpio_flags = -ovB
    cpio_in_flags = -iuvB
    cpio_disk_flags = -pdcu
    dd_flags = "obs=64k bs=64k"
    dd_in_flags = "ibs=64k bs=64k"
    saveset_members = 1
    copy_in_cmd = "dd ibs=64k obs=8k if=$"
    rewind = "tctl -f $ rewind"
    rewind_offline = "tctl -f $ offline"
    tape_pos_cmd = "tctl -f $ fsf $"
    tape_size = 100G
    exec_parallel = 0
    tape_address = /dev/rmt0.1
    tape_address_rew = /dev/rmt0
    expir_period = 30
    disk_copy_cmd = copy
    tape_copy_cmd = cpio
    archive_function = save
    compress = no
    and error log is below
    21.03.2011     17:16:11     Job started
    21.03.2011     17:16:11     Step 001 started (program RSDBAJOB, variant &0000000000013, user ID BASIS)
    21.03.2011     17:16:11     Execute logical command BRBACKUP On host gulfeccdev
    21.03.2011     17:16:11     Parameters:-u / -jid FLL__20110321171610 -c force -t online -m full -p initGDV.sap
    21.03.2011     17:16:13     BR0051I BRBACKUP 7.00 (40)
    21.03.2011     17:16:13     BR0055I Start of database backup: befmiufr.fnt 2011-03-21 17.16.11
    21.03.2011     17:16:13     BR0484I BRBACKUP log file: /oracle/GDV/sapbackup/befmiufr.fnt
    21.03.2011     17:16:13     BR0280I BRBACKUP time stamp: 2011-03-21 17.16.12
    21.03.2011     17:16:13     BR0301E SQL error -12547 at location BrDbConnect-2, SQL statement:
    21.03.2011     17:16:13     'CONNECT /'
    21.03.2011     17:16:13     ORA-12547: TNS:lost contact
    21.03.2011     17:16:13     BR0310E Connect to database instance GDV failed
    21.03.2011     17:16:13     BR0280I BRBACKUP time stamp: 2011-03-21 17.16.13
    21.03.2011     17:16:13     BR0301E SQL error -12547 at location BrDbConnect-2, SQL statement:
    21.03.2011     17:16:13     'CONNECT /'
    21.03.2011     17:16:13     ORA-12547: TNS:lost contact
    21.03.2011     17:16:13     BR0310E Connect to database instance GDV failed
    21.03.2011     17:16:13     
    21.03.2011     17:16:13     BR0056I End of database backup: befmiufr.fnt 2011-03-21 17.16.12
    21.03.2011     17:16:13     BR0280I BRBACKUP time stamp: 2011-03-21 17.16.13
    21.03.2011     17:16:13     BR0054I BRBACKUP terminated with errors
    21.03.2011     17:16:13     External program terminated with exit code 3
    21.03.2011     17:16:13     BRBACKUP returned error status E
    21.03.2011     17:16:13     Job finished
    please help me for this error
    regards
    krishna
    Edited by: krishna murthy on Mar 22, 2011 7:20 AM

    Dear aleh
    I have set environment variable
    oragdv>export MPROTECT_TXT ON
    oragdv>brconnect -u / -f dbstate
    and executed successfully
    but again I am trying with DB13  i am getting same erro
    as well as I tried with brtools i am getting following error
    Detail log:                    befmndrc.ant
    BR0477I Oracle pfile /oracle/GDV/112_64/dbs/initGDV.ora created from spfile /oracle/GDV/112_64/dbs/spfileGDV.ora
    BR0280I BRBACKUP time stamp: 2011-03-22 14.34.18
    BR0319I Control file copy created: /oracle/GDV/sapbackup/cntrlGDV.dbf 19251200
    BR0101I Parameters
    Name                           Value
    oracle_sid                     GDV
    oracle_home                    /oracle/GDV/112_64
    oracle_profile                 /oracle/GDV/112_64/dbs/initGDV.ora
    sapdata_home                   /oracle/GDV
    sap_profile                    /oracle/GDV/112_64/dbs/initGDV.sap
    backup_mode                    ALL
    backup_type                    online
    backup_dev_type                tape
    compress                       no
    tape_copy_cmd                  cpio
    cpio_flags                     -ovB
    cpio_in_flags                  -iuvB
    dd_flags                       obs=64k bs=64k
    dd_in_flags                    ibs=64k bs=64k
    rewind                         tctl -f $ rewind
    rewind_offline                 tctl -f $ offline
    tape_size                      102400.000 MB
    tape_address                   /dev/rmt0.1
    tape_address_rew               /dev/rmt0
    volume_backup                  GDVB01,GDVB02,GDVB03,GDVB04,GDVB05,GDVB06,GDVB07,GDVB08,GDVB09,GDVB10,
                                   GDVB11,GDVB12,GDVB13,GDVB14,GDVB15,GDVB16,GDVB17,GDVB18,GDVB19,GDVB20,
                                   GDVB21,GDVB22,GDVB23,GDVB24,GDVB25,GDVB26,GDVB27,GDVB28,GDVB29,GDVB30
    expir_period                   30
    tape_use_count                 100
    exec_parallel                  0
    system_info                    oragdv/oragdv gulfeccdev AIX 1 6 000C870AD400
    oracle_info                    GDV 11.2.0.2.0 8192 8637 72753195 gulfeccdev UTF8 UTF8
    sap_info                       701 SAPSR3 0002LK0003GDV0011D06565319310015Maintenance_ORA
    make_info                      rs6000_64 OCI_102 Feb 21 2009
    command_line                   /usr/sap/GDV/SYS/exe/run/brbackup -p initGDV.sap -d tape -t online -m all -k no -e 0 -l E -U
    BR0116I ARCHIVE LOG LIST before backup for database instance GDV
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            LOCATION=/oracle/GDV/oraarch/GDVarch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     8634
    Next log sequence to archive   8637
    Current log sequence           8637             SCN: 72753195
    Database block size            8192             Thread: 1
    Current system change number   72763669         ResetId: 742322108
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize
    PSAPSR3        ONLINE*    ONLINE+   /oracle/GDV/sapdata2/sr3_1/sr3.data1                 3082821632    4     2752513  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/GDV/sapdata2/sr3_10/sr3.data10               3082821632   13     2752513  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/GDV/sapdata2/sr3_11/sr3.data11               3082821632   14     2752513  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/GDV/sapdata2/sr3_12/sr3.data12               3082821632   15     2752513  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/GDV/sapdata2/sr3_13/sr3.data13               2998935552   16     2752513  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/GDV/sapdata2/sr3_14/sr3.data14               2998935552   17     2752513  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/GDV/sapdata2/sr3_15/sr3.data15               2998935552   18     2752513  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3701X    ONLINE*    ONLINE    /oracle/GDV/sapdata4/sr3701x_7/sr3701x.data7          104865792   42     2883585  NOLINK  FILE             0            0     8192
    PSAPSR3701X    ONLINE*    ONLINE    /oracle/GDV/sapdata4/sr3701x_8/sr3701x.data8        12332310528   43     2883585  NOLINK  FILE             0            0     8192
    PSAPSR3USR     ONLINE*    ONLINE+   /oracle/GDV/sapdata4/sr3usr_1/sr3usr.data1             52436992   34     2883585  NOLINK  FILE   10485760000     20971520     8192
    PSAPTEMP       ONLINE#    ONLINE+   /oracle/GDV/sapdata1/temp_1/temp.data1               1468014592   -1     2686977  NOLINK  FILE   10485760000     20971520     8192
    PSAPUNDO       ONLINE-    ONLINE+   /oracle/GDV/sapdata1/undo_1/undo.data1               7822385152    3     2686977  NOLINK  FILE   10485760000     20971520     8192
    SYSAUX         ONLINE*    ONLINE+   /oracle/GDV/sapdata1/sysaux_1/sysaux.data1            713039872    2     2686977  NOLINK  FILE   10485760000     20971520     8192
    SYSTEM         ONLINE*    SYSTEM+   /oracle/GDV/sapdata1/system_1/system.data1           1478500352    1     2686977  NOLINK  FILE   10485760000     20971520     8192
    SYSTEM         ONLINE*    SYSTEM+   /oracle/GDV/sapdata1/system_2/system.data2            209723392   41     2686977  NOLINK  FILE   10485760000     20971520     8192
    BR0119I Redo log files
    File                                                Size  Group     Device  Status    Link    Type
    /oracle/GDV/origlogA/log_g11m1.dbf              52429312    1      2621445  INUSE     NOLINK  FILE
    /oracle/GDV/mirrlogA/log_g11m2.dbf              52429312    1      2621442  INUSE     NOLINK  FILE
    /oracle/GDV/origlogB/log_g12m1.dbf              52429312    2      2621446  INUSE     NOLINK  FILE
    /oracle/GDV/mirrlogB/log_g12m2.dbf              52429312    2      2621443  INUSE     NOLINK  FILE
    /oracle/GDV/origlogA/log_g13m1.dbf              52429312    3      2621445  INUSE     NOLINK  FILE
    /oracle/GDV/mirrlogA/log_g13m2.dbf              52429312    3      2621442  INUSE     NOLINK  FILE
    /oracle/GDV/origlogB/log_g14m1.dbf              52429312    4      2621446  INUSE     NOLINK  FILE
    /oracle/GDV/mirrlogB/log_g14m2.dbf              52429312    4      2621443  INUSE     NOLINK  FILE
    BR0120I Control files
    File                                                Size   Id.      Device  Link    Type
    /oracle/GDV/origlogA/cntrl/cntrlGDV.dbf         19251200    0      2621445  NOLINK  FILE
    /oracle/GDV/origlogB/cntrl/cntrlGDV.dbf         19251200    0      2621446  NOLINK  FILE
    /oracle/GDV/sapdata1/cntrl/cntrlGDV.dbf         19251200    0      2686977  NOLINK  FILE
    BR0280I BRBACKUP time stamp: 2011-03-22 14.34.18
    BR0057I Backup of database: GDV
    BR0058I BRBACKUP action ID: befmndrc
    BR0059I BRBACKUP function ID: ant
    BR0110I Backup mode: ALL
    BR0077I Database file for backup: /oracle/GDV/sapbackup/cntrlGDV.dbf
    BR0061I 44 files found for backup, total size 210220.695 MB
    BR0143I Backup type: online
    BR0112I Files will not be compressed
    BR0130I Backup device type: tape
    BR0102I Following backup device will be used: /dev/rmt0.1
    BR0103I Following backup volumes will be used:
    GDVB01,GDVB02,GDVB03
    BR0280I BRBACKUP time stamp: 2011-03-22 14.34.18
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRBACKUP:
    BR0280I BRBACKUP time stamp: 2011-03-22 14.34.36
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0208I Volume with name GDVB01 GDVB02 GDVB03 required in device /dev/rmt0.1
    BR0210I Please mount BRBACKUP volume, if you have not already done so
    BR0280I BRBACKUP time stamp: 2011-03-22 14.34.36
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRBACKUP:
    BR0280I BRBACKUP time stamp: 2011-03-22 14.37.16
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0280I BRBACKUP time stamp: 2011-03-22 14.37.16
    BR0226I Rewinding tape volume in device /dev/rmt0 ...
    BR0351I Restoring /oracle/GDV/sapbackup/.tape.hdr0
    BR0355I from /dev/rmt0.1 ...
    BR0241I Checking label on volume in device /dev/rmt0.1
    BR0217W Lock period for volume GDVB01 in device /dev/rmt0.1 not expired
    BR0218W Checking label on volume in device /dev/rmt0.1 failed
    BR0212I Please check the volume or the device
    BR0280I BRBACKUP time stamp: 2011-03-22 14.37.30
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRBACKUP:
    BR0280I BRBACKUP time stamp: 2011-03-22 14.45.06
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0280I BRBACKUP time stamp: 2011-03-22 14.45.06
    BR0226I Rewinding tape volume in device /dev/rmt0 ...
    BR0351I Restoring /oracle/GDV/sapbackup/.tape.hdr0
    BR0355I from /dev/rmt0.1 ...
    BR0241I Checking label on volume in device /dev/rmt0.1
    BR0217W Lock period for volume GDVB01 in device /dev/rmt0.1 not expired
    BR0218W Checking label on volume in device /dev/rmt0.1 failed
    BR0212I Please check the volume or the device
    BR0280I BRBACKUP time stamp: 2011-03-22 14.45.06
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRBACKUP:
    BR0280I BRBACKUP time stamp: 2011-03-22 14.45.10
    BR0257I Your reply: 's'
    BR0260E BRBACKUP cancelled by user
    BR0056I End of database backup: befmndrc.ant 2011-03-22 14.45.10
    BR0280I BRBACKUP time stamp: 2011-03-22 14.45.10
    BR0054I BRBACKUP terminated with errors

  • Offline backup error ERRORMESSAGE: Error 1495 in dmdb6bkp.c(1092)

    Hello Guru's
    we are using DB2 database and AIX OS,ECC 5.0.
    When we are trying to take offline backup ,the backup Scheduling failed due tot he below error.
    Kindly look and let me know to fix the issue ASAP.
    Offline backup error logfile.
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000251, user ID SAGARK)
    Execute logical command DB6_DBBACKUP On host eccprod
    Parameters:PRD OFFLINE TO /prdback/sapbackup BUFFERS 0 BUFFERSIZE 0 PARALLELISM 0
    Job started
    Step 001 started (program RSDBAJOB, variant &0000000000250, user ID SAGARK)
    Execute logical command DB6_DBBACKUP On host eccprod
    Parameters:PRD OFFLINE TO /prdback/sapbackup BUFFERS 0 BUFFERSIZE 0 PARALLELISM 0
    set connect partition: 0
    deactivate db PRD...
    ERRORMESSAGE: Error 1495 in dmdb6bkp.c(1092):
    SQL1495W  Deactivate database is successful, however, there is still
    a connection to the database.
    Making database backup...
    Database      = PRD,Backup Mode   = FULL,Backup Options= OFFLINE,Buffer size   = AUTOMATIC,# buffers     = AUTOMATIC
    Parallelism   = AUTOMATIC,numLocations  = 1,
    location[0]   = /prdback/sapbackup
    util priority = 0
    ERRORMESSAGE: Error -1035 in dmdb6bkp.c(1498):
    SQL1035N  The database is currently in use.  SQLSTATE=57019
    Stopping database manager...
    ERRORMESSAGE: Error -6036 in dmdb6bkp.c(1299):
    SQL6036N  START or STOP DATABASE MANAGER command is already in
    progress.
    Starting database manager...
    ERRORMESSAGE: Error -6036 in dmdb6bkp.c(1308):
    SQL6036N  START or STOP DATABASE MANAGER command is already in
    progress.
    Making database backup...
    Database      = PRD
    Backup Mode   = FULL
    Backup Options= OFFLINE
    Buffer size   = AUTOMATIC
    buffers     = AUTOMATIC
    Parallelism   = AUTOMATIC
    numLocations  = 1
    location[0]   = /prdback/sapbackup
    util priority = 0
    ERRORMESSAGE: Error -1224 in dmdb6bkp.c(1498):
    SQL1224N  A database agent could not be started to service a request,
    or was terminated as a result of a database system shutdown or a
    force command.
    activate db PRD...
    ERRORMESSAGE: Error -901 in dmdb6bkp.c(1066):
    SQL0901N  The SQL statement failed because of a non-severe system
    error. Subsequent SQL statements can be processed.  (Reason "164".)
    SQLSTATE=58004
    ERRORMESSAGE: Error -901 in dmdb6bkp.c(1621):
    DB6CliConnectUser(): [IBM][CLI Driver] SQL0901N  The SQL statement
    failed because of a non-severe system error. Subsequent SQL
    statements can be processed.  (Reason "164".)  SQLSTATE=58004
    External program terminated with exit code 2
    DB6_DBBACKUP returned error status E
    TemSe: I/O error
    set connect partition: 0
    deactivate db PRD...
    ERRORMESSAGE: Error 1495 in dmdb6bkp.c(1092):
    SQL1495W  Deactivate database is successful, however, there is still
    a connection to the database.
    Making database backup...
    Database      = PRD
    Backup Mode   = FULL
    Backup Options= OFFLINE
    Buffer size   = AUTOMATIC
    buffers     = AUTOMATIC
    Parallelism   = AUTOMATIC
    numLocations  = 1
    location[0]   = /prdback/sapbackup
    util priority = 0
    ERRORMESSAGE: Error -1035 in dmdb6bkp.c(1498):
    SQL1035N  The database is currently in use.  SQLSTATE=57019
    Stopping database manager...
    SQL1064N DB2STOP processing was successful.
    Starting database manager...
    SQL1063N DB2START processing was successful.
    Making database backup...
    Database      = PRD
    Backup Mode   = FULL
    Backup Options= OFFLINE
    Buffer size   = AUTOMATIC
    buffers     = AUTOMATIC
    Parallelism   = AUTOMATIC
    numLocations  = 1
    location[0]   = /prdback/sapbackup
    util priority = 0
    Backup successful. The timestamp for this backup image is : 20100807220016
    Backup size is : 107000 MB.
    activate db PRD...
    DB20000I  The ACTIVATE DATABASE command completedsuccessfully.
    Job finished
    Thanks & Regards,
    Mohan Babu Chenna|Capgemini India |

    Hello Mohan,
    Here we can see that the backup did eventually complete:
    Backup successful. The timestamp for this backup image is : 20100807220016 Backup size is : 107000 MB
    However there had been some issues to deactivate/activate the database .
    As note 594353 states , this is normal and on occurance of this event
    the corresponding action is retried up to 10 times .
    You can check this via
    1. db2diag.log
    2. List history backup commands
    3. db2ckbkp ... DB2 Check backup command
    You can ensure that the backup did complete.
    Regards,
    Paul

  • Backup set is over 7 days -- DB status is NOMOUNT -- RESTORE CONTROLFILE

    I'm trying to do a restore of a control file using RMAN.
    After doing a STARTUP NOMOUNT of the database, I try:
    SET DBID = [whatever]
    RESTORE CONTROLFILE FROM AUTOBACKUP;
    The error I get is:
    channel ORA_DISK_1: no AUTOBACKUP in 7 days found
    And that's true. The backup set I'm trying to restore from is over 7 days old.
    I tried
    RESTORE CONTROLFILE FROM AUTOBACKUP UNTIL TIME "TO_DATE('12/17/08 18:00:00', 'MM/DD/YY HH24:MI:SS')"
    and I get the same error.
    All the examples I've seen using UNTIL TIME seem to assume that the database status is MOUNT not NOMOUNT, which is needed if you don't have a control file in the first place.
    How do I get around this problem?
    === Al

    Al,
    Set your env variable oracle_sid = whatever_sid
    then from command line
      c:> rman target /
       or
       $> rman target /
      And use one of the following to list your backups
    RMAN> LIST BACKUP;
    RMAN> LIST BACKUP OF DATABASE;
    RMAN> LIST BACKUP SUMMARY;
    RMAN> LIST INCARNATION;
    RMAN> LIST BACKUP BY FILE;
    RMAN> LIST COPY OF DATABASE ARCHIVELOG ALL;
    RMAN> LIST COPY OF DATAFILE 1, 2, 3;
    RMAN> LIST BACKUP OF DATAFILE 11 SUMMARY;
    RMAN> LIST BACKUP OF ARCHIVELOG FROM SEQUENCE 1437;
    RMAN> LIST CONTROLFILECOPY "/tmp/cntrlfile.copy";
    RMAN> LIST BACKUPSET OF DATAFILE 1;Regards

  • Development backup error (urgent)

    Dear All,
    I m having problem while taking development backup.log file is attached.plz advice me hoe to resolve this issue.
    Detail log: bdxxiprp.ant
    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
    (URGENT.......) .
    Note : If i restart my server will it kill the process and then i again can take the backup...Plz advice
    Regard's

    Basically for some reason your DB is in backup state.
    You need to find which tablespaces are in status backup and then execute command:
    alter tablespace <tablespace_name> end backup;
    That should fix the problem
    Regards
    Juan

  • Development backup error

    Dear All,
    I m having problem while taking development backup.log file is attached.plz advice  me hoe to resolve this issue.
    Detail log:                    bdxxiprp.ant
    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     
    (URGENT.......)                       .
    Regard's

    Dear
    Either a backup is already running or the last backup was interrupted and your tablespaces are still in backup mode.
    When a backup starts the command BEGIN BACKUP is used by Oracle, this puts a tablespace in backup mode so
    the backup can run.
    If the backup crashes or a backup is still running, it is possible one or more tablespaces are still in backup mode.
    Check this page, as it helps you to check and fix an errorness situation caused by an online backup crash.
    It gives commands to see which tablespace is still in backup mode, fix situation etc
    [http://help.sap.com/saphelp_nw70/helpdata/en/5c/b04b428f96ab53e10000000a1550b0/content.htm|http://help.sap.com/saphelp_nw70/helpdata/en/5c/b04b428f96ab53e10000000a1550b0/content.htm]
    Please reward points
    Kind regards
    Tom

  • External Hard drive/Time Machine backup error message

    On a sidenote, I posted a question a week ago about what external hard drive would be compatible with my Macbook, and I so happened to get a WD My Passport Studio hard drive as an unsuspecting gift, so I didn't have to buy one.
    Anyways, I started the backup on this hard drive and I had an error message: "Unable to complete backup. An error occurred while copying files to the backup volume." I searched this on the Apple Support Communities and found that I wasn't the only one who had this problem. So, I came upon one discussion that suggested downloading Time Machine Buddy (link:http://pondini.org/TM/A1.html) (link that prompted me to download: http://pondini.org/TM/C3.html). I downloaded it and found out that the error was occurring in my Library folder, specifically in the folder entitled "db" in the "Receipts" folder. There's one file in the "db" folder entitled "a.receiptdb" <----can someone please explain what the heck this is??? Lol. Anyways, I decided to exclude the whole "Receipts" folder from being backed up and now my external hard drive is backing up my files fine. My MAIN question is this: What is wrong with my receipts folder that is causing the error?
    P.S. here are the error messages in the Time Machine Buddy log:
    Error: (-36) SrcErr:YES Copying /Library/Receipts/db/a.receiptdb to (null)
    Error: (-36) SrcErr:NO Copying /Library/Receipts/db/a.receiptdb to /Volumes/My Passport Studio/Backups.backupdb/Josh Brew’s MacBook/2012-01-29-162450.inProgress/D9F83053-7FE1-4EBE-991A-F400C35D37CC/Macin tosh HD/Library/Receipts/db
    Stopping backup.
    Error: (-8062) SrcErr:NO Copying /Library/Receipts/db/a.receiptdb to /Volumes/My Passport Studio/Backups.backupdb/Josh Brew’s MacBook/2012-01-29-162450.inProgress/D9F83053-7FE1-4EBE-991A-F400C35D37CC/Macin tosh HD/Library/Receipts/db
    Copied 246 files (277.4 MB) from volume Macintosh HD.
    Copy stage failed with error:11
    Backup failed with error: 11
    As you can see, iy is located in the "db" folder. I have no idea what's wrong. Thank you for your time! It is MUCH appreciated.

    The connection to 10.6.7 may just be a coincidence.  I had a similar problem with a disk and was about to throw it out but decided to try a different USB cable.  That fixed the problem and the drive is still in use.
    Try a new cable if you have not already done so.
    Dave

  • LMS 3.2 - Backup-Error -- ERROR(908): Cannot create or back up tar file

    Hello again,
    with performing backup (LMS 3.2 on Solaris 9) the following errors will arise.
    dbbackup.log
    /opt/CSCOpx/bin/tar: Removing leading `/' from absolute path names in the archive Apps file : /opt/CSCOpx/backup/manifest/upm/upminfo/datafiles.txt
    [Tue Dec  8 08:56:54 2009] Archiving the contents of the following directories into /enbw/backup/files/cw_db_backup/0/upm/filebackup.tar
    [Tue Dec  8 08:56:54 2009] /opt/CSCOpx/hum/conf/upm-snmp.properties
    /opt/CSCOpx/hum/thresholdscript /opt/CSCOpx/MDC/tomcat/webapps/upm/reports
    /opt/CSCOpx/MDC/tomcat/webapps/upm/WEB-INF/classes/com/cisco/nm/upm/properti
    es/common/UPM.properties
    /opt/CSCOpx/bin/tar: Removing leading `/' from absolute path names in the archive
    /opt/CSCOpx/bin/tar: Cannot add file
    /opt/CSCOpx/MDC/tomcat/webapps/upm/reports/virt32841308_657_658_-718594975:
    No such file or directory
    /opt/CSCOpx/bin/tar: Cannot add file
    /opt/CSCOpx/MDC/tomcat/webapps/upm/reports/virt32841308_658_659_1465769167:
    No such file or directory
    /opt/CSCOpx/bin/tar: Error exit delayed from previous errors [Tue Dec  8 09:07:30 2009]  ERROR(908): Cannot create or back up tar file. Backup cancelled. Verify that you have write-access to this directory. [Tue Dec  8 09:07:30 2009]  Backup failed: 2009/12/08 09:07:40 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
    Is seems to be problem related to maximal filesize handling of GNUtar implemented in CW2000.
    The problem is with tar'ing HUM-Reports in /opt/CSCOpx/MDC/tomcat/webapps/upm/reports, and with reaching
    tarfile-size of 2,9GByte error is thrown.
    </exxx/backup/files/cw_db_backup/0/upm># ls -lh
    total 6126448
    -rw-r-----   1 casuser  casusers    2.9G Dec  8 09:07 filebackup.tar
    </exxx/backup/files/cw_db_backup/0/upm># ls -al
    total 6126452
    drwxr-x---   2 casuser  casusers     512 Dec  7 14:30 .
    drwxr-x---  11 casuser  casusers     512 Dec  7 14:30 ..
    -rw-r-----   1 casuser  casusers 3135201280 Dec  8 09:07 filebackup.tar
    GNUtar-Version
    # /opt/CSCOpx/bin/tar --version
    tar (GNU tar) 1.13
    Copyright (C) 1988, 92,93,94,95,96,97,98, 1999 Free Software Foundation, Inc. This is free software; see the source for copying conditions.  There is NO
    warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
    Written by John Gilmore and Jay Fenlason.
    Is this a know problem?
    Thanks for any thoughts.
    Best Regards
    Lothar

    Hi Joe,
    thanks for your feedback.
    These files to be tarred aren't there directly after backup stops with error.
    It seems that some process stores data about reports in that file and when trying to
    pack these reports via tar they are delete by any cleanup method.
    Does this help.
    P.S. Backup usually takes about more than 1hour

Maybe you are looking for