Online Backup of tablespace

Hello,
I have a Oracle 9i database which is running in Archivelogmode mode and I perform online backups with RMAN. I use the command:
backup tablespace <tablespace_name>;
My documentation now says that I would have to put the specific tablespace into backup mode first. I understand that applies with user-managed (with O/S command) backups of the datafiles but why for online backups too ? My documentation says that if I do not do the step the backup is faulty.
But I tried it ... it works. I performed the online backup...deleted the datafile...and could restore it without no problem.
So is the documentation wrong ?
Thanks Marcus

Putting a tablespace into backup mode is required for
**user managed** online backups. It is not required
for RMAN backups.
Hope this helps.
Kailash.

Similar Messages

  • Online backup and the Redolog mechanism

    Hello,
    During a backup I understand that the redolog mechanism changes, so that when a block is changed for the first time after the backup commences, it's entire content is copied to the redolog files, rather than just the change vector.
    My question is, does this happen even when the oracle block size is the same as the operating system block size?
    My understanding is that the change in redolog mechanism is because a single oracle block can be made up multiple operating system blocks, so that within an oracle block a change can be done to a few blocks, then a read by the online backup, so that the oracle block read by the backup is inconsistent.
    But if the oracle block size was the same as the operating system block size, each change would be atomic, so the problem of having inconsistent oracle blocks would not arise. So the change in redolog mechanism would no longer be necessary. Does the redolog mechanism change anyway?
    Kind regards,
    Peter

    Hi Peter,
    I will try to make the issue more clear eventhough so much useful has been written and said in this thread !!
    During Online Backup the tablespaces enter the backup mode this has following effects:
    1) A checkpoint on TS level is triggered before the backup of this TS starts and DBWR writes all corresponding dirty blocks of this TS to data files.
    2) The SCN corresponding to TS Checkpoint remains Frozen in the headrers of all TS files until the end of backup mode.
    3) Every change in this TS is logged in the redolog on data block level instead of data record level ; not only the redo info for a modified record is written into the redolg but the whole 8 KB block containing this record ( immaterial whether OS block size is 8 KB or not). The reason for this granual logging is the possibility that
    CPIO or DD may copy an oracle block to the backup medium in smaller units than 8 KB while the block is being changed by DBWR which can lead to inconsistencies whithin such a block.
    Now When the backup later used for restoring the TS, all blocks written to the redo log during the backup mode overwrite therir "suspicious"versions saved directly in the backup of the data files.
    Hope this useful
    Regards
    Umesh

  • How does recovery work after an online backup

    Hello,
    While trying to conceptually understand how backup and recovery works, I came accross a question concerning hot (online) backup.
    This is a conceptual question (I am trying to understand how things work), it is not a "how should I proceed/ what should I do step by step" question.
    As far as I understand, an online backup of a tablespace can be performed by copying the OS files making up a tablespace while the database is up and being used (i.e. transactions are modifying data in the database). Before the copying of the OS files starts, the Oracle RDMS must be notified that an online backup is being taken via "ALTER...BEGIN BACKUP" (such that some additional information is written to the Redo Log, which may be required for subsequent recovery using the online backup). During recovery the Oracle RDBMS uses the copies of the OS files together with the online and archived redo logs in order to reconstruct all committed transactions and it further uses the UNDO tablespace to rollback open (uncommitted) transactions.
    Thinking about this, it seems to me, that in order for this to work in all possible scenarios the undo information from the time the backup was taken may be required. Therefore backup of the UNDO tablespace should be taken as well (see the explanation for this assumption below). However browsing the internet (including the Oracle online documentation) I did not find any statements concerning the backup of the UNDO tablespace when an online backup is taken. Moreover I couldn't figure out when exactly such a backup of the UNDO tablespace must be done, to ensure that the database can be recovered in all scenarios.
    I believe that undo information from the time the hot backup was taken may be required e.g. in the following scenario:
    Assume we are taking a hot backup of a given tablespace, i.e. we are copying all OS files that make up this tablespace, while the database is potentially being used. Let D1 be one of the datafiles in our tablespace and let transaction T1 modify datafile D1. Let transaction T1 further be uncommitted while the copy of datafile D1 is being made and let (at least some of) the changes from T1 be included in the backup copy D1' of D1 (because DBWR has already written the modified blocks at the time they were being copied to the backup). Let transaction T1 be rolled back after the copy is completed. D1' will thus contain modifications from T1, while D1 will not.
    Now some time later the datafile D1 is lost. When recovering D1 from the copy D1', the (archived) redo logs will be applied to D1'. Before that, transaction T1 should be rolled back in the copy D1', because modifications from T1 must not appear in the recovered version of the database.
    I do however not understand, where the information to rollback transaction T1 exactly comes from. It may still be in the current UNDO tablespace. I do however assume that rollback information is not kept in the UNDO tablespace forever. I see three possible answers to this
    (a) There are some requirements which I missed so far to backup the UNDO tablespace whenever a hot backup is made.
    (b) Since the Oracle "RDBMS" has to be notified that an online backup is being done, it might store all relevant undo information (e.g. write it to the redo log) when the tablespace is put in backup mode.
    (c) There are situations when recovery is not possible due to "missing old UNDO information".
    Answer (b) seems the most plausible to me. I did however not find any confirmation of this and if (b) really is the answer, I would be interested to understand what information is stored where by the Oracle RDMBS and how it is used for recovery.
    To summarize I have the following questions:
    (I) Is there any requirement to backup the UNDO tablespace together with an online backup of a tablespace, and if so, where is this stated in the Oracle documentation?
    (II) What mechanisms ensure that uncommitted transactions can be cleared from the online copy of a tablespace (potentially a long time after the copy was taken)?
    (III) Do you know any links (Oracle documentation or other online resources) explaining these datails?
    Thank you for any hints and answers
    kind regards
    Martin

    Its a highly technical question and I can be completely wrong due to my very less knowledge but I would attempt to answer still. Hope I say something sensible so bear with me.
    As far as I understand, an online backup of a tablespace can be performed by copying the OS files making up a tablespace while the database is up and being used (i.e. transactions are modifying data in the database).Correct. But it would depend on the tool you are going to use to do so.Using o/s level commands like CP and all would require you to manually copy the files to the backup location. Using RMAN, it would be lot easier and RMAN would take care of everything.
    Before the copying of the OS files starts, the Oracle RDMS must be notified that an online backup is being taken via "ALTER...BEGIN BACKUP" (such that some additional information is written to the Redo Log, which may be required for subsequent recovery using the online backup). Again, this is a requirement only in the case of user-managed backup . In that case, because of the fractured block issue , its important that the corresponding older information/image of the buffer is also copied in the redo stream and that's done when the begin backup command is used. Using RMAN, this is not needed as RMAN can read the consistent image which it would store in the backup piece, exactly in the same way in which select request is fulfilled by oracle for a dirty buffer which is yet to be made consistent.
    During recovery the Oracle RDBMS uses the copies of the OS files together with the online and archived redo logs in order to reconstruct all committed transactions and it further uses the UNDO tablespace to rollback open (uncommitted) transactions.Correct!
    Thinking about this, it seems to me, that in order for this to work in all possible scenarios the undo information from the time the backup was >taken may be required. Therefore backup of the UNDO tablespace should be taken as well (see the explanation for this assumption below). >However browsing the internet (including the Oracle online documentation) I did not find any statements concerning the backup of the UNDO >tablespace when an online backup is taken. Moreover I couldn't figure out when exactly such a backup of the UNDO tablespace must be done, to >ensure that the database can be recovered in all scenarios.The reason that its not a must to do so is that if the transaction is yet active, there is no way that Oracle would overwrite the Undo information of it, even if you may come after 100 years, it would be there. The Undo segment would mark those blocks as active undo blockswhich contains the information of that transaction whose status within the transacton table of that undo segment is still marked as active. So its there all the time in the undo tablespace. Now, for an instance, let's assume that the undo is not there as well( it would be but let's assume), the changes made to the undo segment's blocks are also recored in the redo as its just a change happening to any other segment like EMP,DEPT except with the difference that its not done by you but by oracle. So using that information, in the future , if there would be a need to replay those changes, necessary information to do so can be brought up from the redo blocks stored in the redo/archive logs. Yes, if there would be pending transactions that would require Undo information to get them rolled back and you have lost Undo tablespace and have no backup of it , you wont be able to bring back the database as it would be inconsistent and oracle would not let you to do it. In that case, you may require to use hacks to get it up and that would be really tricky situation.
    (I) Is there any requirement to backup the UNDO tablespace together with an online backup of a tablespace, and if so, where is this stated in the Oracle documentation?As I said above, it must be there if you are anticipating loss of Undo tablespace. If you have lost it, you would need a backup and all the archive logs and redo logs to recover and get it back to the point where the current database is . Rest, oracle would take care as it would reapply the redo contents of the undo segments over the undo segment and get it consitent.
    (II) What mechanisms ensure that uncommitted transactions can be cleared from the online copy of a tablespace (potentially a long time after the copy was taken)?As I said , pending transaction's undo is never overwritten by Oracle. Its always kept and marked as active undo . Only a transaction end would make it elgible to get overwritten and that too won't happen immediately(undo_retention would kick in) .
    (III) Do you know any links (Oracle documentation or other online resources) explaining these datails?I have to see if its there some where step by step mentioned and I shall update the reply once I shall find the link. Hoep someone else in the meantime finds it .
    HTH
    Aman....

  • Database online backup issue after ERP 6.0 EHP4 update

    Dear Folks!...
    I have an issue with ERP 6.0 system with database oracle.
    After performing EHP4 update unable to trigger online backup.
    Shows bellow error message:
    BR0280I BRBACKUP time stamp: 2009-07-10 14.53.10
    BR0301E SQL error -1031 at location BrSapTspList-8, SQL statement:
    'PREPARE stmt_1 STATEMENT FROM'
    'SELECT TABSPACE FROM "SAPSR3".TSORA UNION SELECT INDSPACE FROM "SAPSR3".TSORA ORDER BY 1'
    ORA-01031: insufficient privileges
    BR0280I BRBACKUP time stamp: 2009-07-10 14.53.10
    BR0307I Shutting down database instance RES ...
    BR0280I BRBACKUP time stamp: 2009-07-10 14.53.17
    BR0308I Shutdown of database instance RES successful
    BR0056I End of database backup: beazhkrz.afd 2009-07-10 14.53.10
    BR0280I BRBACKUP time stamp: 2009-07-10 14.53.17
    BR0054I BRBACKUP terminated with errors
    At SAP level check with table TSORA shows current existing tablespaces.And from DB13 able to perform DB actions except backup related.
    Could any one suggest to help me to fix the issue.
    Thanks in Advance.
    Regards,
    Venkata.

    Dear  presu
    It has been installed on Windows OS 64 bit AMD processor.And related to permissions of the folder was given completely.
    Complete log Message:
    BR0051I BRBACKUP 7.00 (39) BR0055I Start of database backup: beazhkrz.afd 2009-07-10 14.52.43
    BR0484I BRBACKUP log file: G:\oracle\RES\sapbackup\beazhkrz.afd
    BR0477I Oracle pfile G:\oracle\RES\102\database\initRES.ora created from spfile G:\oracle\RES\102\database\spfileRES.ora
    BR0613I Database instance RES is shut down BR0329I Database instance RES will be opened now BR0280I BRBACKUP time stamp: 2009-07-10 14.52.45 BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRBACKUP: BR0280I BRBACKUP time stamp: 2009-07-10 14.52.49 BR0257I Your reply: 'c' BR0259I Program execution will be continued...
    BR0280I BRBACKUP time stamp: 2009-07-10 14.52.49 BR0304I Starting and opening database instance RES ...
    BR0280I BRBACKUP time stamp: 2009-07-10 14.53.01 BR0305I Start and open of database instance RES successful
    BR0101I Parameters
    Name                           Value
    oracle_sid                     RES
    oracle_home                    G:\oracle\RES\102
    oracle_profile                 G:\oracle\RES\102\database\initRES.ora
    sapdata_home                   G:\oracle\RES
    sap_profile                    G:\oracle\RES\102\database\initRES.sap
    backup_mode                    ALL
    backup_type                    offline
    backup_dev_type                disk
    backup_root_dir                Y:\Backup
    compress                       no
    disk_copy_cmd                  copy
    cpio_disk_flags                -pdcu
    exec_parallel                  0
    system_info                    resadm RCIHWRES13V Windows 5.2 Build 3790 Service Pack 2 AMD64
    oracle_info                    RES 10.2.0.4.0 8192 8188 87296881 RCIHWRES13V UTF8 UTF8
    sap_info                       701 SAPSR3 RES TEMPLICENSE R3_ORA INITIAL
    make_info                      NTAMD64 OCI_10201_SHARE Dec  7 2008
    command_line                   G:\usr\sap\RES\DVEBMGS13\exe\brbackup.exe -p initRES.sap -d disk -t offline -m all -k no -e 0 -l E -U
    BR0116I ARCHIVE LOG LIST before backup for database instance RES
    Parameter                      Value
    Database log mode              No Archive Mode
    Automatic archival             Disabled
    Archive destination            M:\oracle\RES\oraarch\RESarch
    Archive format                 ARC%S_%R.%T
    Oldest online log sequence     8185
    Next log sequence to archive   8188
    Current log sequence           8188             SCN: 87296881
    Database block size            8192             Thread: 1
    Current system change number   87304439         ResetId: 689356796
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File          Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize
    PSAPSR3        ONLINE*    ONLINE+   H:\ORACLE\RES\SAPDATA1\SR3_1\SR3.DATA1               2222989312    4           7  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_21\SR3.DATA21             2097160192   48           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_22\SR3.DATA22             2097160192   49           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_23\SR3.DATA23             2097160192   50           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_24\SR3.DATA24             2097160192   58           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_25\SR3.DATA25             2097160192   59           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_26\SR3.DATA26             2097160192   60           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_27\SR3.DATA27             2097160192   61           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_28\SR3.DATA28             2097160192   62           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_29\SR3.DATA29             2097160192   63           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE+   H:\ORACLE\RES\SAPDATA1\SR3_2\SR3.DATA2               2243960832    5           7  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3_30\SR3.DATA30             2097160192   64           7  NOLINK  FILE             0            0     8192
    PSAPSR3        ONLINE*    ONLINE+   I:\ORACLE\RES\SAPDATA2\SR3_8\SR3.DATA8               2139103232   11           8  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   I:\ORACLE\RES\SAPDATA2\SR3_9\SR3.DATA9               2432704512   12           8  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   J:\ORACLE\RES\SAPDATA3\SR3_11\SR3.DATA11             2264932352   14           9  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\RES\SAPDATA4\SR3_18\SR3.DATA18             2181046272   21          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\RES\SAPDATA4\SR3_19\SR3.DATA19             2181046272   22          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3        ONLINE*    ONLINE+   K:\ORACLE\RES\SAPDATA4\SR3_20\SR3.DATA20             2202017792   23          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE+    ONLINE+   H:\ORACLE\RES\SAPDATA1\SR3700_1\SR3700.DATA1         2705334272   24           7  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE+    ONLINE+   H:\ORACLE\RES\SAPDATA1\SR3700_2\SR3700.DATA2         2705334272   25           7  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE+    ONLINE+   H:\ORACLE\RES\SAPDATA1\SR3700_3\SR3700.DATA3         2747277312   26           7  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3700     ONLINE+    ONLINE    I:\ORACLE\RES\SAPDATA2\SR3700_20\SR3700.DATA20       2147491840   54           8  NOLINK  FILE             0            0     8192
    PSAPSR3700     ONLINE+    ONLINE    J:\ORACLE\RES\SAPDATA3\SR3700_21\SR3700.DATA21       2147491840   55           9  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3701_11\SR3701.DATA11       2097160192   72           7  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    H:\ORACLE\RES\SAPDATA1\SR3701_12\SR3701.DATA12       2097160192   73           7  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    I:\ORACLE\RES\SAPDATA2\SR3701_10\SR3701.DATA10       2097160192   71           8  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    I:\ORACLE\RES\SAPDATA2\SR3701_5\SR3701.DATA5         2097160192   66           8  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    I:\ORACLE\RES\SAPDATA2\SR3701_6\SR3701.DATA6         2097160192   67           8  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    I:\ORACLE\RES\SAPDATA2\SR3701_7\SR3701.DATA7         2097160192   68           8  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    I:\ORACLE\RES\SAPDATA2\SR3701_8\SR3701.DATA8         2097160192   69           8  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    I:\ORACLE\RES\SAPDATA2\SR3701_9\SR3701.DATA9         2097160192   70           8  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    K:\ORACLE\RES\SAPDATA4\SR3701_1\SR3701.DATA1        20971528192   44          10  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    L:\ORACLE\RES\SAPDATA5\SR3701_2\SR3701.DATA2        20971528192   45          11  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    L:\ORACLE\RES\SAPDATA5\SR3701_3\SR3701.DATA3        20971528192   46          11  NOLINK  FILE             0            0     8192
    PSAPSR3701     ONLINE*    ONLINE    L:\ORACLE\RES\SAPDATA5\SR3701_4\SR3701.DATA4        10485768192   47          11  NOLINK  FILE             0            0     8192
    PSAPSR3DB      ONLINE*    ONLINE+   K:\ORACLE\RES\SAPDATA4\SR3DB_1\SR3DB.DATA1           2097160192   41          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3DB      ONLINE*    ONLINE+   K:\ORACLE\RES\SAPDATA4\SR3DB_2\SR3DB.DATA2           2097160192   42          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3DB      ONLINE*    ONLINE+   K:\ORACLE\RES\SAPDATA4\SR3DB_3\SR3DB.DATA3           1048584192   43          10  NOLINK  FILE   10485760000     20971520     8192
    PSAPSR3USR     ONLINE*    ONLINE+   H:\ORACLE\RES\SAPDATA1\SR3USR_1\SR3USR.DATA1           20979712   40           7  NOLINK  FILE   10485760000     20971520     8192
    PSAPTEMP       ONLINE#    ONLINE+   I:\ORACLE\RES\SAPDATA2\TEMP_1\TEMP.DATA1             2097160192   -1           8  NOLINK  FILE   10485760000     20971520     8192
    PSAPUNDO       ONLINE-    ONLINE+   J:\ORACLE\RES\SAPDATA3\UNDO_1\UNDO.DATA1             8766103552    2           9  NOLINK  FILE   10485760000     20971520     8192
    SYSAUX         ONLINE*    ONLINE+   H:\ORACLE\RES\SAPDATA1\SYSAUX_1\SYSAUX.DATA1          251666432    3           7  NOLINK  FILE   10485760000     20971520     8192
    SYSTEM         ONLINE*    SYSTEM+   H:\ORACLE\RES\SAPDATA1\SYSTEM_1\SYSTEM.DATA1         1073750016    1           7  NOLINK  FILE   10485760000     20971520     8192
    BR0119I Redo log files
    File                                                Size  Group     Device  Status    Link    Type
    F:\ORACLE\RES\MIRRLOGA\LOG_G11M2.DBF            52429312    1            5  INUSE     NOLINK  FILE
    E:\ORACLE\RES\ORIGLOGA\LOG_G11M1.DBF            52429312    1            4  INUSE     NOLINK  FILE
    F:\ORACLE\RES\MIRRLOGB\LOG_G12M2.DBF            52429312    2            5  INUSE     NOLINK  FILE
    E:\ORACLE\RES\ORIGLOGB\LOG_G12M1.DBF            52429312    2            4  INUSE     NOLINK  FILE
    F:\ORACLE\RES\MIRRLOGA\LOG_G13M2.DBF            52429312    3            5  INUSE     NOLINK  FILE
    E:\ORACLE\RES\ORIGLOGA\LOG_G13M1.DBF            52429312    3            4  INUSE     NOLINK  FILE
    F:\ORACLE\RES\MIRRLOGB\LOG_G14M2.DBF            52429312    4            5  INUSE     NOLINK  FILE
    E:\ORACLE\RES\ORIGLOGB\LOG_G14M1.DBF            52429312    4            4  INUSE     NOLINK  FILE
    BR0120I Control files
    File       Size   Id.      Device  Link    Type
    E:\oracle\RES\origlogA\cntrl\cntrlRES.dbf       14106624    0            4  NOLINK  FILE
    E:\oracle\RES\origlogB\cntrl\cntrlRES.dbf       14106624    0            4  NOLINK  FILE
    G:\oracle\RES\sapdata1\cntrl\cntrlRES.dbf       14106624    0            6  NOLINK  FILE
    BR0280I BRBACKUP time stamp: 2009-07-10 14.53.10
    BR0301E SQL error -1031 at location BrSapTspList-8, SQL statement:
    'PREPARE stmt_1 STATEMENT FROM' 'SELECT TABSPACE FROM "SAPSR3".TSORA UNION SELECT INDSPACE FROM "SAPSR3".TSORA ORDER BY 1'
    ORA-01031: insufficient privileges
    BR0280I BRBACKUP time stamp: 2009-07-10 14.53.10 BR0307I Shutting down database instance RES ...
    BR0280I BRBACKUP time stamp: 2009-07-10 14.53.17 BR0308I Shutdown of database instance RES successful
    BR0056I End of database backup: beazhkrz.afd 2009-07-10 14.53.10 BR0280I BRBACKUP time stamp: 2009-07-10 14.53.17
    BR0054I BRBACKUP terminated with errors
    Regards,
    Venkata.

  • No Online backups due to datafiles offline than I canu0092t recover. How...?

    Hi gurus!!!
    I got into a problem with some datafiles.
    We have MySAP in a BD oracle 9.2.0.6
    I used Oracle Entreprise Manager Console to generate two datafiles in the tablespace PSAPPRDUSR,
    but I generated them in another tablesapce (PSAPPRD) with a name of file,
    size and location very different from those that there uses the tablespace PSAPPRD.
    <b>So... I put them offline later to erase them later!!!</b>
    <b>The datafiles contains no data.</b>
    <b>Later, in the night backup:</b>
       BR0334W Status of database file /oracle/PRD/sapdata4/prdusr_2/prdusr.data2 is RECOVER 
       BR0334W Status of database file /oracle/PRD/sapdata4/prdusr_2/prdusr.data2a is RECOVER
       BR0301E SQL error -1128 at location BrTspAlter-3                    
       ORA-01128: cannot start online backup - file 31 is offline          
       ORA-01110: data file 31: '/oracle/PRD/sapdata4/prdusr_2/prdusr.data2'
       BR0280I BRBACKUP time stamp: 2007-04-20 03.01.21                    
       BR0316E 'Alter tablespace PSAPPRD begin backup' failed              
       BR0056I End of database backup: bdvbtndh.ant 2007-04-20 03.01.21    
    <b>
    And now... I neither can erase them nor can put online again.</b>
    <b>To erase them I used:</b>
    SQL> ALTER DATABASE DATAFILE '/oracle/PRD/sapdata4/prdusr_2/prdusr.data2' OFFLINE DROP;
    Database altered.
    SQL> commit;
    But they continue there, do not resign.
    <b>To put them online:</b>
    SQL> alter database recover datafile '/oracle/PRD/sapdata4/prdusr_2/prdusr.data2';
    alter database recover datafile '/oracle/PRD/sapdata4/prdusr_2/prdusr.data2'
    ERROR at line 1:
    ORA-00279: change 31203204 generated at 04/19/2007 19:30:11 needed for thread 1
    ORA-00289: suggestion : /oracle/PRD/oraarch/PRDarch1_2574.dbf
    ORA-00280: change 31203204 for thread 1 is in sequence #2574
    SQL>
    <b>But we have continued working and I don't want to lose any data.</b>
    HEEEELP!!!!
    What I can do to recover the datafiles and to continue with my daily Online backups?
    The BD is in production and I do not have long time to fix it, only a few hours on Saturdays night.

    Hi,
    alter database datafile offline drop;
    This command is not meant to drop a datafile. It is meant to offline the datafile with the intention of dropping the tablespace.
    For a tablespace comprising multiple datafiles you can only drop a datafile by dropping the entire tablespace, this will work even you have one datafile.
    If you have 10gr2, it's finally possible to drop a datafile as long as
    it's not the only datafile within the tablespace, and
    the tablespace is only and in read-write status.
    So since you are on 9i your situation in summary:
    If you have more than one datafile in the tablespace and you wish to keep the objects that reside in the other datafile(s) which are part of this tablespace, then you must export all the objects inside the tablespace.
    1. Gather information on the current datafiles within the tablespace by running some query to remember the t/s, segment, and datafile info.
    2. Export all the objects that you wish to keep.
    3. Once the export is done, issue the DROP TABLESPACE <tablespace name> INCLUDING CONTENTS.
    4. Delete the datafiles belonging to this tablespace using the operating system.
    5. Recreate the tablespace with the datafile(s) desired, then import the objects into that tablespace.
    Hope this helps and good luck,
    George

  • ORA-01195:  online backup of file 65 needs more recovery to be consistent

    Hi,
    I was doing a clone by taking the hot backup from prod to dev. The backup was good. And then I created the control file, Then I passed the command
    recover database until cancel using backup controlfile;
    It asked for the archived logs files. I supplied them until current time.
    Then I canceled.
    That's when I got this error
    ORA-01547: warning: RECOVER succeeded but OPEN RESETLOGS would get error below
    ORA-01195: online backup of file 65 needs more recovery to be consistent
    ORA-01110: data file 65: '/d10/oradata/dwdev/kt01.dbf'
    ORA-01112: media recovery not started
    What am I doing wrong? I have not yet passed the command "Alter database open resetlogs"
    Should I do more logswitches in prod and pass those files to dev ? Or should I just put the kt tablespace in backup mode and copy the data files?

    Which set of archivelogs did you copy over to apply ? All the archivelogs from the first ALTER TABLESPACE ... BEGIN BACKUP to the archivelogs subsequent to the last ALTER TABLESPACE ... END BACKUP ?
    In the cloned datadabase, what messages do you see in the alert.log on having issued the RECOVER DATABASE command ? Does it complain about the datafiles being fuzzy ? Which archivelogs does it show as having been applied ?
    Can you check the log sequence numbers for the duration of the Backup PLUS ArchiveLogs subsequent to the Backup ?

  • Online backup via BRTOOLS

    Hi there!
    I am planning to implement an online backup using brtools. When I did the testing, I noticed an error that prevents me from completing the backup. Hope anybody can help me. It seems that there is an error with the compress command but I cant seem to understand why. Below is the entire log of my backup. Btw, Im using ECC6 and Oracle Database 10g.
    Thanks in advance.
    >>> TNVT - to host 172.16.0.5
    su - e6padm
    AMC-E6P-DB:e6padm 1> brtools
    BR0651I BRTOOLS 7.00 (18)
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.45
    BR0656I Choice menu 1 - please make a selection
    BR*Tools main menu
    1 = Instance management
    2 - Space management
    3 - Segment management
    4 - Backup and database copy
    5 - Restore and recovery
    6 - Check and verification
    7 - Database statistics
    8 - Additional functions
    9 - Exit program
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR0662I Enter your choice:
    4
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.50
    BR0663I Your choice: '4'
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.50
    BR0656I Choice menu 9 - please make a selection
    Backup and database copy
    1 = Database backup
    2 - Archivelog backup
    3 - Database copy
    4 - Non-database backup
    5 - Backup of database disk backup
    6 - Verification of database backup
    7 - Verification of archivelog backup
    8 - Additional functions
    9 - Reset program status
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR0662I Enter your choice:
    1
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.51
    BR0663I Your choice: '1'
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.51
    BR0657I Input menu 15 - please check/enter input values
    BRBACKUP main options for backup and database copy
    1 - BRBACKUP profile (profile) ....... [initE6P.sap]
    2 - Backup device type (device) ...... [disk]
    3 # Tape volumes for backup (volume) . []
    4 # BACKINT/Mount profile (parfile) .. []
    5 - Database user/password (user) .... [/]
    6 - Backup type (type) ............... [online]
    7 # Disk backup for backup (backup) .. [no]
    8 # Delete disk backup (delete) ...... [no]
    9 ~ Files for backup (mode) .......... [all]
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR0662I Enter your choice:
    c
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.55
    BR0663I Your choice: 'c'
    BR0259I Program execution will be continued...
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.55
    BR0657I Input menu 16 - please check/enter input values
    Additional BRBACKUP options for backup and database copy
    1 - Confirmation mode (confirm) ....... [yes]
    2 - Query mode (query) ................ [no]
    3 - Compression mode (compress) ....... [yes]
    4 - Verification mode (verify) ........ [no]
    5 - Fill-up previous backups (fillup) . [no]
    6 - Parallel execution (execute) ...... [0]
    7 - Additional output (output) ........ [no]
    8 - Message language (language) ....... [E]
    9 - BRBACKUP command line (command) ... [-p initE6P.sap -d disk -t online -m all -k yes -e 0 -l E]
    Standard keys: c - cont, b - back, s - stop, r - refr, h - help
    BR0662I Enter your choice:
    c
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.59
    BR0663I Your choice: 'c'
    BR0259I Program execution will be continued...
    BR0291I BRBACKUP will be started with options '-p initE6P.sap -d disk -t online -m all -k yes -e 0 -l E'
    BR0280I BRTOOLS time stamp: 2008-10-26 00.32.59
    BR0670I Enter 'c[ont]' to continue, 'b[ack]' to go back, 's[top]' to abort:
    c
    BR0280I BRTOOLS time stamp: 2008-10-26 00.33.00
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0051I BRBACKUP 7.00 (18)
    BR0055I Start of database backup: bdzcoptc.and 2008-10-26 00.33.00
    BR0477I Oracle pfile /oracle/E6P/102_64/dbs/initE6P.ora created from spfile /oracle/E6P/102_64/dbs/spfileE6P.ora
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.01
    BR0319I Control file copy created: /oracle/E6P/sapbackup/cntrlE6P.dbf 18268160
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.02
    BR0057I Backup of database: E6P
    BR0058I BRBACKUP action ID: bdzcoptc
    BR0059I BRBACKUP function ID: and
    BR0110I Backup mode: ALL
    BR0077I Database file for backup: /oracle/E6P/sapbackup/cntrlE6P.dbf
    BR0061I 44 files found for backup, total size 178457.758 MB
    BR0143I Backup type: online
    BR0111I Files will be compressed
    BR0130I Backup device type: disk
    BR0106I Files will be saved on disk in directory: /installer/backup/E6P/bdzcoptc
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.02
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRBACKUP:
    c
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.03
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0370I Directory /installer/backup/E6P/bdzcoptc created
    BR0370I Directory /installer/backup/E6P/E6P created
    BR0202I Saving init_ora
    BR0203I to /installer/backup/E6P/E6P ...
    BR0202I Saving /oracle/E6P/102_64/dbs/initE6P.sap
    BR0203I to /installer/backup/E6P/E6P ...
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.03
    BR0198I Profiles saved successfully
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.04
    BR0315I 'Alter tablespace PSAPSR3 begin backup' successful
    BR0201I Compressing /oracle/E6P/sapdata1/sr3_1/sr3.data1
    BR0203I to /installer/backup/E6P/bdzcoptc/sr3.data1.Z ...
    BR0278E Command output of 'LANG=C compress -c /oracle/E6P/sapdata1/sr3_1/sr3.data1 > /installer/backup/E6P/bdzcoptc/sr3.data1.Z':
    /oracle/E6P/sapdata1/sr3_1/sr3.data1: Invalid argument
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.04
    BR0279E Return code from 'LANG=C compress -c /oracle/E6P/sapdata1/sr3_1/sr3.data1 > /installer/backup/E6P/bdzcoptc/sr3.data1.Z': 1
    BR0224E Compressing /oracle/E6P/sapdata1/sr3_1/sr3.data1 to /installer/backup/E6P/bdzcoptc/sr3.data1.Z failed due to previous errors
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.07
    BR0317I 'Alter tablespace PSAPSR3 end backup' successful
    BR0056I End of database backup: bdzcoptc.and 2008-10-26 00.33.04
    BR0280I BRBACKUP time stamp: 2008-10-26 00.33.08
    BR0054I BRBACKUP terminated with errors
    BR0292I Execution of BRBACKUP finished with return code 5
    BR0668I Warnings or errors occurred - you can continue to ignore them or go back to repeat the last action
    BR0280I BRTOOLS time stamp: 2008-10-26 00.33.08
    BR0670I Enter 'c[ont]' to continue, 'b[ack]' to go back, 's[top]' to abort:
    s
    BR0280I BRTOOLS time stamp: 2008-10-26 00.33.12
    BR0257I Your reply: 's'
    BR0679I Do you really want to cancel BRTOOLS? Enter y[es]/n[o]:
    y
    BR0280I BRTOOLS time stamp: 2008-10-26 00.33.13
    BR0257I Your reply: 'y'
    BR0260E BRTOOLS cancelled by user
    BR0280I BRTOOLS time stamp: 2008-10-26 00.33.13
    BR0654I BRTOOLS terminated with errors
    AMC-E6P-DB:e6padm 2> exit
    AMC-E6P-DB:e6padm 3> logout
    >>>Closing capture file.

    Hi Scott,
    Thank you for the quick reply. However, I have another thing to bring up. I created an exact replica of this instance to a separate server for my online backup testing. I used mksysb for my rootvg and created a backup of my datavg and restored it to the new server. To my surprise, my online backup worked. Im currently running it so that I can upload the log in this thread. I checked on the version of the brtools and they are both of the same level. Also, I forgot to mention that I've been using offline backup via brtools since last year. It was only now that Im trying to implement an online backup. Would this problem still be caused by brarchive patch 18?
    Thanks in advance!

  • Online Backup Problem

    Hello All,
    Online backup getting failled in our Quality System
    Please find the backup log below:
    BR0233E Backup utility has reported an error while saving file /oracle/AQ1/sapdata9/ax1_816/ax1.data816
    BR0233E Backup utility has reported an error while saving file /oracle/AQ1/sapdata9/ax1_816/ax1.data816
    [Normal] From:
    BR0233E Backup utility has reported an error while saving file /oracle/AQ1/sapdata9ax1_848/ax1.data848
    BR0233E Backup utility has reported an error while saving file /oracle/AQ1/sapdata10/undo_6/undo.data6
    BR0279E Return code from 'backint -u AQ1_001 -f backup -i /oracle/AQ1/sapbackup/.bdytsrlr.lst -t file -c': 1
    BR0232E 515 of 665 files saved by backup utility
    BR0280I BRBACKUP time stamp: 2008-09-09 17.40.31
    BR0231E Backup utility call failed
    I dont have any clue on this.
    Please guide me to move forward.
    Thanks in Advance
    Prem.

    Hi,
    I am facing the same problem. The backup was gracefully started and all the files-copying was fine until it completed with 136 out of 197 files backed up. Do you have any idea what caused the error and why only certain logs were backed up?
    Detail log:     bdyvfkde     .     anf
    BR0051I BRBACKUP 7.00 (31)               
    BR0055I Start of database backup: bdyvfkde.anf 2008-09-16 19.59.30               
    BR0484I BRBACKUP log file: G:\Oracle\R3Q\sapbackup\bdyvfkde.anf               
    BR0477I Oracle pfile E:\Oracle\R3Q\102\database\initR3Q.ora created from spfile E:\Oracle\R3Q\102\database\spfileR3Q.ora               
    BR0280I BRBACKUP time stamp: 2008-09-16 19.59.45               
    BR0319I Control file copy created: G:\Oracle\R3Q\sapbackup\CNTRLR3Q.DBF 25378816               
    BR0101I Parameters               
    Name                           Value               
    oracle_sid                     R3Q               
    oracle_home                    E:\Oracle\R3Q\102               
    oracle_profile                 E:\Oracle\R3Q\102\database\initR3Q.ora               
    sapdata_home                   I:\Oracle\R3Q               
    sap_profile                    E:\Oracle\R3Q\102\database\initR3Q.sap               
    backup_mode                    ALL          
    backup_type                    online          
    backup_dev_type                util_file          
    system_info                    r3qadm GBSSAPR3QDB1 Windows 5.2 Build 3790 Service Pack 2 Intel          
    oracle_info                    R3Q 10.2.0.2.0 8192 5784 8678021244 GBSSAPR3QDB1 WE8DEC UTF8          
    sap_info                       700 SAPR3P R3Q V2063558986 R3_ORA 0020126990          
    make_info                      NTintel OCI_10201_SHARE Feb  4 2008          
    command_line                   F:\usr\sap\R3Q\SYS\exe\run\brbackup.exe -c -t online -d util_file -m all -u system/**********          
    BR0116I ARCHIVE LOG LIST before backup for database instance R3Q          
    Parameter                      Value          
    Database log mode              Archive Mode          
    Automatic archival             Enabled          
    Archive destination            H:\oracle\R3Q\saparch          
    Archive format                 %t_%s_%r.dbf          
    Oldest online log sequence     5779          
    Next log sequence to archive   5784          
    Current log sequence           5784             SCN: 8678021244          
    Database block size            8192             Thread: 1          
    Current system change number   8678032273       ResetId: 658162758          
    BR0118I Tablespaces and data files          
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_100\R3P.DATA100           4193255424  123           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_101\R3P.DATA101           4193255424  124           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_102\R3P.DATA102           6340739072  125           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_103\R3P.DATA103           8388616192  126           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_104\R3P.DATA104           8388616192  127           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_105\R3P.DATA105           8388616192  128           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_106\R3P.DATA106           8388616192  129           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_107\R3P.DATA107           8388616192  130           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_108\R3P.DATA108           8388616192  131           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_109\R3P.DATA109           4453302272  132           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_10\R3P.DATA10             2167406592   26           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_110\R3P.DATA110           6340739072  133           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_111\R3P.DATA111           4193255424  134           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_112\R3P.DATA112           4193255424  135           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_113\R3P.DATA113           4193255424  136           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_114\R3P.DATA114           4193255424  138           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_115\R3P.DATA115           4193255424  139           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_116\R3P.DATA116           4193255424  140           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_117\R3P.DATA117           4193255424  141           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_118\R3P.DATA118           4193255424  142           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_119\R3P.DATA119           4193255424  143           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_11\R3P.DATA11             2099249152   28           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_120\R3P.DATA120           4196401152  144           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_121\R3P.DATA121           4193255424  146           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_122\R3P.DATA122           4193255424  147           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_123\R3P.DATA123           4193255424  148           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_124\R3P.DATA124           4193255424  150           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_125\R3P.DATA125           4193255424  151           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_126\R3P.DATA126           4193255424  152           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_127\R3P.DATA127           4194304000  153           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_128\R3P.DATA128           4194304000  154           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_129\R3P.DATA129           4194304000  155           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_12\R3P.DATA12             2099249152   29           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_130\R3P.DATA130           4194304000  156           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_131\R3P.DATA131           4194304000  157           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_132\R3P.DATA132           4194304000  158           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_133\R3P.DATA133           4194304000  159           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_134\R3P.DATA134           4194304000  160           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_135\R3P.DATA135           4183818240  161           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_136\R3P.DATA136           4183818240  162           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_137\R3P.DATA137           4183818240  163           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_138\R3P.DATA138           4183818240  164           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_139\R3P.DATA139           4183818240  165           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_13\R3P.DATA13             2099249152   30           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_140\R3P.DATA140           4183818240  166           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_141\R3P.DATA141           8589934592  167           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_142\R3P.DATA142           8589934592  168           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_143\R3P.DATA143           8589934592  169           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_144\R3P.DATA144           8589934592  171           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_145\R3P.DATA145           8589934592  172           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_146\R3P.DATA146           8589934592  173           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_147\R3P.DATA147           8589926400  174           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_148\R3P.DATA148           8589934592  175           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_149\R3P.DATA149           8589934592  176           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_14\R3P.DATA14             2105540608   31           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_150\R3P.DATA150           8589934592  177           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_151\R3P.DATA151           8589942784  182           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_152\R3P.DATA152.DBF       8589942784  186           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_153\R3P.DATA153           8589942784  188           8  NOLINK  FILE    8589934592      1048576     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_154\R3P.DATA154           8589942784  189           8  NOLINK  FILE    8589934592     10485760     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_155\R3P.DATA155           8589942784  190           8  NOLINK  FILE    8589934592     10485760     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_156\R3P.DATA156           8589942784  191           8  NOLINK  FILE    8589934592    104857600     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_157\R3P.DATA157           8589942784  192           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_158\R3P.DATA158           8589942784  193           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_159\R3P.DATA159           8589942784  194           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_15\R3P.DATA15             2097152000   32           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_160\R3P.DATA160           8589942784  195           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_161\R3P.DATA161           8589942784  196           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_162\R3P.DATA162           8589942784  197           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_163\R3P.DATA163           8589942784  198           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_164\R3P.DATA164           8589942784  199           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_165\R3P.DATA165           8589942784  200           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_166\R3P.DATA166           8589942784  201           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_167\R3P.DATA167           8589942784  203           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_168\R3P.DATA168           8589942784  204           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_169\R3P.DATA169           8589942784  205           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_16\R3P.DATA16             2097152000   34           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_170\R3P.DATA170           8589942784  206           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_171\R3P.DATA171           8589942784  207           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_172\R3P.DATA172           8589942784   10           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_173\R3P.DATA173           8589942784   11           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_17\R3P.DATA17             2099249152   35           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_18\R3P.DATA18             2097152000   36           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_19\R3P.DATA19             2097152000   39           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_1\R3P.DATA1               8388616192    2           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P_20\R3P.DATA20             8388616192   40           8  NOLINK  FILE             0            0     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_21\R3P.DATA21             2415919104   41           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_22\R3P.DATA22             2097152000   42           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_23\R3P.DATA23             2097152000   43           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_24\R3P.DATA24             2097152000   44           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_25\R3P.DATA25             2097152000   45           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_26\R3P.DATA26             2097152000   46           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_27\R3P.DATA27             2097152000   47           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_28\R3P.DATA28             2097152000   48           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_29\R3P.DATA29             2097152000   49           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_2\R3P.DATA2               8388616192    3           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_30\R3P.DATA30             2097152000   50           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_31\R3P.DATA31             4193255424   51           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_32\R3P.DATA32             4193255424   52           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_33\R3P.DATA33             4193255424   53           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_34\R3P.DATA34             4193255424   54           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_35\R3P.DATA35             4193255424   55           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_36\R3P.DATA36             4193255424   56           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_37\R3P.DATA37             4193255424   58           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_38\R3P.DATA38             4195352576   59           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_39\R3P.DATA39             4193255424   60           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_3\R3P.DATA3               8388616192    4           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_40\R3P.DATA40             4193255424   61           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_41\R3P.DATA41             4193255424   66           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_42\R3P.DATA42             4193255424   67           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_43\R3P.DATA43             4193255424   68           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_44\R3P.DATA44             5293211648   21           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_45\R3P.DATA45             4599054336   24           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_46\R3P.DATA46             4196401152   27           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_47\R3P.DATA47             4193255424   37           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_48\R3P.DATA48             4193255424   38           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_49\R3P.DATA49             4193255424   69           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_4\R3P.DATA4               8388616192    5           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_50\R3P.DATA50             4193255424   70           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_51\R3P.DATA51             4809818112   22           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_52\R3P.DATA52             4193255424   71           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_53\R3P.DATA53             4193255424   72           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_54\R3P.DATA54             4193255424   73           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_55\R3P.DATA55             4194304000   74           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_56\R3P.DATA56             4194304000   75           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_57\R3P.DATA57             4194304000   76           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_58\R3P.DATA58             4194304000   77           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_59\R3P.DATA59             4194304000   78           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_5\R3P.DATA5               8388616192    6           8  NOLINK  FILE    8388608000   2147483648     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_60\R3P.DATA60             4194304000   79           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_61\R3P.DATA61             4194304000   80           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_62\R3P.DATA62             5242880000   82           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_63\R3P.DATA63             4194304000   83           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_64\R3P.DATA64             4194304000   84           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_65\R3P.DATA65             4194304000   85           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_66\R3P.DATA66             5242880000   86           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_67\R3P.DATA67             7340032000   87           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_68\R3P.DATA68             8388608000   88           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_69\R3P.DATA69             8388608000   89           8  NOLINK  FILE    8388608000   1048576000     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_6\R3P.DATA6               4416610304    7           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_70\R3P.DATA70             6107955200   90           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_71\R3P.DATA71             5111808000   91           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_72\R3P.DATA72             4806672384   92           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_73\R3P.DATA73             4537188352   93           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_74\R3P.DATA74             4402970624   94           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_75\R3P.DATA75             4402970624   95           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_76\R3P.DATA76             4268752896   96           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_77\R3P.DATA77             4260364288   97           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_78\R3P.DATA78             4260364288   98           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_79\R3P.DATA79             4260364288   99           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_7\R3P.DATA7               2790268928    8           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_80\R3P.DATA80             4260364288  100           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_81\R3P.DATA81             4260364288  101           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_82\R3P.DATA82             4260364288  103           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_83\R3P.DATA83             4260364288  104           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_84\R3P.DATA84             4260364288  105           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_85\R3P.DATA85             4260364288  106           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_86\R3P.DATA86             4260364288  107           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_87\R3P.DATA87             4261412864  108           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_88\R3P.DATA88             4260364288  109           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_89\R3P.DATA89             4260364288  110           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_8\R3P.DATA8               2512396288    9           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_90\R3P.DATA90             4260364288  111           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_91\R3P.DATA91             4260364288  112           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_92\R3P.DATA92             4193255424  113           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_93\R3P.DATA93             4193255424  114           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_94\R3P.DATA94             4193255424  115           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_95\R3P.DATA95             4193255424  116           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_96\R3P.DATA96             4193255424  117           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_97\R3P.DATA97             4193255424  118           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_98\R3P.DATA98             4193255424  120           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_99\R3P.DATA99             4193255424  122           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P        ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P_9\R3P.DATA9               2301624320   25           8  NOLINK  FILE    8388608000         8192     8192          
    PSAPR3P700     ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P700_1\R3P700.DATA1         9646907392  179           8  NOLINK  FILE   34358689792   1048576000     8192          
    PSAPR3P700     ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P700_2\R3P700.DATA2        12621717504  180           8  NOLINK  FILE   34358689792   1048576000     8192          
    PSAPR3P700     ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\R3P700_3\R3P700.DATA3        28311560192  181           8  NOLINK  FILE   34358689792   1048576000     8192          
    PSAPR3P700     ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3P700_4\R3P700.DATA4         4294975488  187           8  NOLINK  FILE             0            0     8192          
    PSAPR3PUSR     ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3PUSR_1\R3PUSR.DATA1         4194304000   20           8  NOLINK  FILE             0            0     8192          
    PSAPR3PUSR     ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3PUSR_2\R3PUSR.DATA2         2097152000   81           8  NOLINK  FILE             0            0     8192          
    PSAPR3PUSR     ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3PUSR_3\R3PUSR.DATA3         1572864000  102           8  NOLINK  FILE             0            0     8192          
    PSAPR3PUSR     ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3PUSR_4\R3PUSR.DATA4         2097152000  121           8  NOLINK  FILE             0            0     8192          
    PSAPR3PUSR     ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3PUSR_5\R3PUSR.DATA5         2086666240  145           8  NOLINK  FILE             0            0     8192          
    PSAPR3PUSR     ONLINE*    ONLINE    I:\ORACLE\R3Q\SAPDATA1\R3PUSR_6\R3PUSR.DATA6         2044723200  149           8  NOLINK  FILE             0            0     8192          
    PSAPTEMP       ONLINE#    ONLINE    I:\ORACLE\R3Q\SAPDATA1\TEMP_1\TEMP.DATA1             2097160192   -1           8  NOLINK  FILE             0            0     8192          
    PSAPTEMP       ONLINE#    ONLINE    I:\ORACLE\R3Q\SAPDATA1\TEMP_2\TEMP.DATA2             2097160192   -2           8  NOLINK  FILE             0            0     8192          
    PSAPTEMP       ONLINE#    ONLINE    I:\ORACLE\R3Q\SAPDATA1\TEMP_3\TEMP.DATA3             2097160192   -3           8  NOLINK  FILE             0            0     8192          
    PSAPTEMP       ONLINE#    ONLINE    I:\ORACLE\R3Q\SAPDATA1\TEMP_4\TEMP.DATA4             2097160192   -4           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_1\UNDO.DATA1             2097160192   62           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_2\UNDO.DATA2             2097160192   63           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_3\UNDO.DATA3             2097160192   64           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_4\UNDO.DATA4             2097160192   65           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_5\UNDO.DATA5             2097152000  119           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_6\UNDO.DATA6             2097152000  170           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_7\UNDO.DATA7             2684362752  183           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_8\UNDO.DATA8             2684362752  184           8  NOLINK  FILE             0            0     8192          
    PSAPUNDO       ONLINE-    ONLINE    I:\ORACLE\R3Q\SAPDATA1\UNDO_9\UNDO.DATA9             2147491840  185           8  NOLINK  FILE             0            0     8192          
    SYSAUX         ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\SYSAUX_1\SYSAUX.DATA1          618668032  178           8  NOLINK  FILE   34359721984     10485760     8192          
    SYSAUX         ONLINE*    ONLINE+   I:\ORACLE\R3Q\SAPDATA1\SYSAUX_2\SYSAUX.DATA2          618668032  202           8  NOLINK  FILE   34359721984     10485760     8192          
    SYSTEM         ONLINE%    SYSTEM    I:\ORACLE\R3Q\SAPDATA1\SYSTEM_1\SYSTEM.DATA1          524296192    1           8  NOLINK  FILE             0            0     8192          
    SYSTEM         ONLINE%    SYSTEM    I:\ORACLE\R3Q\SAPDATA1\SYSTEM_2\SYSTEM.DATA2         2097152000  137           8  NOLINK  FILE             0            0     8192          
    BR0119I Redo log files          
    File                                                Size  Group     Device  Status    Link    Type          
    G:\ORACLE\R3Q\ORIGLOGA\LOG_G51M1.DBF           157286912   51            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\MIRRLOGA\LOG_G51M2.DBF           157286912   51            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\ORIGLOGB\LOG_G52M1.DBF           157286912   52            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\MIRRLOGB\LOG_G52M2.DBF           157286912   52            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\ORIGLOGC\LOG_G53M1.DBF           157286912   53            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\MIRRLOGC\LOG_G53M2.DBF           157286912   53            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\ORIGLOGA\LOG_G54M1.DBF           157286912   54            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\MIRRLOGA\LOG_G54M2.DBF           157286912   54            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\ORIGLOGB\LOG_G55M1.DBF           157286912   55            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\MIRRLOGB\LOG_G55M2.DBF           157286912   55            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\ORIGLOGC\LOG_G56M1.DBF           157286912   56            6  INUSE     NOLINK  FILE          
    G:\ORACLE\R3Q\MIRRLOGC\LOG_G56M2.DBF           157286912   56            6  INUSE     NOLINK  FILE          
    BR0120I Control files          
    File                                                Size   Id.      Device  Link    Type          
    G:\oracle\R3Q\origlogA\cntrl\cntrlR3Q.dbf       25378816    0            6  NOLINK  FILE          
    H:\oracle\R3Q\saparch\cntrl\cntrlR3Q.dbf        25378816    0            7  NOLINK  FILE          
    I:\oracle\R3Q\sapdata1\cntrl\cntrlR3Q.dbf       25378816    0            8  NOLINK  FILE          
    BR0280I BRBACKUP time stamp: 2008-09-16 19.59.46          
    BR0057I Backup of database: R3Q          
    BR0058I BRBACKUP action ID: bdyvfkde          
    BR0059I BRBACKUP function ID: anf          
    BR0110I Backup mode: ALL          
    BR0077I Database file for backup: G:\Oracle\R3Q\sapbackup\CNTRLR3Q.DBF          
    BR0061I 197 files found for backup, total size 947121.602 MB          
    BR0143I Backup type: online          
    BR0130I Backup device type: util_file          
    BR0109I Files will be saved by backup utility          
    BR0126I Unattended mode active - no operator confirmation required          
    BR0280I BRBACKUP time stamp: 2008-09-16 19.59.50          
    BR0315I 'Alter database begin backup' successful          
    BR0280I BRBACKUP time stamp: 2008-09-16 19.59.50          
    BR0229I Calling backup utility with function 'backup'...          
    BR0278I Command output of 'f:\Usr\SAP\R3Q\SYS\EXE\RUN\backint.exe -u R3Q -f backup -i G:\Oracle\R3Q\sapbackup\.bdyvfkde.lst -t file -c':          
    [Normal] From: OB2BAR_BACKINTXXXXXXXXXXXXXXXXX "R3Q"  Time: 16/09/2008 19:59:50          
         Backint is started with the following parameters  f:\Usr\SAP\R3Q\SYS\EXE\RUN\backint.exe -u R3Q -f backup -i G:\Oracle\R3Q\sapbackup\.bdyvfkde.lst -t file -c.     
    BR0280I BRBACKUP time stamp: 2008-09-16 21.35.21          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P700_3\R3P700.DATA3          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-16 21.35.21          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P700_2\R3P700.DATA2          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-16 21.35.21          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P700_1\R3P700.DATA1          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-16 21.35.21          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_160\R3P.DATA160          
    #SAVED.... 20080916.0087.03          
    BR0280I BRBACKUP time stamp: 2008-09-16 22.02.29          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_168\R3P.DATA168          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-16 22.02.29          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_159\R3P.DATA159          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-16 22.02.29          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_163\R3P.DATA163          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-16 22.02.29          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_169\R3P.DATA169          
    #SAVED.... 20080916.0087.03          
    BR0280I BRBACKUP time stamp: 2008-09-16 22.41.11          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_164\R3P.DATA164          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-16 22.41.11          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_171\R3P.DATA171          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-16 22.41.11          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_167\R3P.DATA167          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-16 22.41.11          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_151\R3P.DATA151          
    #SAVED.... 20080916.0087.03          
    BR0280I BRBACKUP time stamp: 2008-09-16 23.19.10          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_170\R3P.DATA170          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-16 23.19.10          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_157\R3P.DATA157          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-16 23.19.10          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_161\R3P.DATA161          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-16 23.19.10          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_165\R3P.DATA165          
    #SAVED.... 20080916.0087.03          
    BR0280I BRBACKUP time stamp: 2008-09-16 23.49.57          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_156\R3P.DATA156          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-16 23.49.57          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_154\R3P.DATA154          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-16 23.49.57          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_152\R3P.DATA152.DBF          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-16 23.49.57          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_153\R3P.DATA153          
    #SAVED.... 20080916.0087.03          
    BR0280I BRBACKUP time stamp: 2008-09-17 00.15.39          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_142\R3P.DATA142          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-17 00.15.39          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_166\R3P.DATA166          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-17 00.15.39          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_155\R3P.DATA155          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-17 00.15.39          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_172\R3P.DATA172          
    #SAVED.... 20080916.0087.03          
    BR0280I BRBACKUP time stamp: 2008-09-17 00.39.05          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_146\R3P.DATA146          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-17 00.39.05          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_162\R3P.DATA162          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-17 00.39.05          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_173\R3P.DATA173          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-17 00.39.05          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_158\R3P.DATA158          
    #SAVED.... 20080916.0087.03          
    BR0280I BRBACKUP time stamp: 2008-09-17 01.04.09          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_106\R3P.DATA106          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-17 01.04.09          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_143\R3P.DATA143          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-17 01.04.09          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_150\R3P.DATA150          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-17 01.04.09          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_149\R3P.DATA149          
    #SAVED.... 20080916.0087.03          
    BR0280I BRBACKUP time stamp: 2008-09-17 01.24.53          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_5\R3P.DATA5          
    #SAVED.... 20080916.0087.00          
    BR0280I BRBACKUP time stamp: 2008-09-17 01.24.53          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_148\R3P.DATA148          
    #SAVED.... 20080916.0087.01          
    BR0280I BRBACKUP time stamp: 2008-09-17 01.24.53          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_144\R3P.DATA144          
    #SAVED.... 20080916.0087.02          
    BR0280I BRBACKUP time stamp: 2008-09-17 01.24.53          
    #FILE..... I:\ORACLE\R3Q\SAPDATA1\R3P_141\R3P.DATA141          
    #SAVED.... 20080916.0087.03          
    BR0280

  • Online backup without PSAPTEMP

    Hello,
    one question, i have recover a database 10.2.0.2 from a online backup.
    before i have delete all files in the sapdata's.
    the database and the sap-system runs well.
    now i became this error:
    orasms> brbackup -q
    BR0051I BRBACKUP 7.00 (18)
    BR0055I Start of database backup: bdvwpovw.qub 2007-08-08 16.29.28
    BR0477I Oracle pfile /oracle/SMS/102_64/dbs/initSMS.ora created from spfile /oracle/SMS/102_64/dbs/spfileSMS.ora
    BR0280I BRBACKUP time stamp: 2007-08-08 16.29.29
    BR0301E SQL error -1187 at location BrDbfInfoGet-1, SQL statement:
    'OPEN curs_3 CURSOR FOR'
    'SELECT TS.TABLESPACE_NAME, TS.STATUS, TS.BLOCK_SIZE, TS.CONTENTS, TS.EXTENT_MANAGEMENT, DF.FILE_NAME, DF.FILE_ID, NVL(DF.STATUS, ' '), NVL(DF.BYTES, 0), NVL(DF.AUTOEXTENSIBLE, 'NO'), NVL(DF.MAXBYTES, 0), NVL(DF.INCREMENT_BY, 0) FROM DBA_TABLESPACES TS, DBA_DATA_FILES DF WHERE TS.TABLESPACE_NAME = DF.TABLESPACE_NAME UNION ALL SELECT TS.TABLESPACE_NAME, TS.STATUS, TS.BLOCK_SIZE, TS.CONTENTS, TS.EXTENT_MANAGEMENT, TF.FILE_NAME, TF.FILE_ID * -1, NVL(TF.STATUS, ' '), NVL(TF.BYTES, 0), NVL(TF.AUTOEXTENSIBLE, 'NO'), NVL(TF.MAXBYTES, 0), NVL(TF.INCREMENT_BY, 0) FROM DBA_TABLESPACES TS, DBA_TEMP_FILES TF WHERE TS.TABLESPACE_NAME = TF.TABLESPACE_NAME ORDER BY 1, 6'
    ORA-01187: cannot read from file 255 because it failed verification tests
    ORA-01110: data file 255: '/oracle/SMS/sapdata1/temp_1/temp.data1'
    BR0314E Collection of information on database files failed
    BR0056I End of database backup: bdvwpovw.qub 2007-08-08 16.29.29
    BR0280I BRBACKUP time stamp: 2007-08-08 16.29.29
    BR0054I BRBACKUP terminated with errors
    orasms>
    the file oracle/SMS/sapdata1/temp_1/temp.data1 come not with the online-backup.
    in my other systems with oracle 9.2. i find the psaptemp in the protocol from online-backup. is this new with oracle 10... ?? how can i create the tablespace psaptemp ?
    Thanks !

    most probably PSAPTEMP is now temporary locally managed. If this is the case, it is not backed up with brbackup and you must create it's datafile. Check in the backup controlfile to know how to create them:
    sqlplus / as sysdba
    ALTER DATABASE BACKUP CONTROLFILE TO TRACE AS '/oracle/SMS/CONTROLFILE_TRACE.txt' reuse;
    exit
    then, add the temp datafile such as :
    ALTER TABLESPACE PSAPTEMP ADD TEMPFILE '/oracle/SMS/sapdata1/TEMP_1/TEMP.DATA1' SIZE 20704M REUSE AUTOEXTEND ON NEXT 67108864  MAXSIZE 24000M;
    good luck

  • Whole online backup from DB13 failed due to processing error

    Hello!
    I have difficulty by execution of Whole database online backup from DB13 via FTP on the remote target.  The backup goes very slow and breaks after a while.
    The BRBACKUP action log looks as follows:
    backup_mode ALL
    backup_type online
    backup_dev_type stage
    stage_root_dir /sap/DEVB
    compress no
    stage_copy_cmd ftp
    remote_host 192.168.200.3
    remote_user sapbackup
    #FILE..... E:\ORACLE\DEV\SAPDATA2\SR3_10\SR3.DATA10
    #SAVED.... /sap/DEVB/bdwkuudu/SR3.DATA10 #1/6
    BR0280I BRBACKUP time stamp: 2007-10-23 01.44.35
    BR0063I 6 of 41 files processed - 12000.047 MB of 93092.766 MB done
    BR0204I Percentage done: 12.89%, estimated end time: 23:06
    BR0001I ******____________________________________________
    BR0202I Saving E:\ORACLE\DEV\SAPDATA2\SR3_6\SR3.DATA6
    BR0203I to /sap/DEVB/bdwkuudu/SR3.DATA6 ...
    #FILE..... E:\ORACLE\DEV\SAPDATA2\SR3_6\SR3.DATA6
    #SAVED.... /sap/DEVB/bdwkuudu/SR3.DATA6 #1/7
    BR0280I BRBACKUP time stamp: 2007-10-23 02.38.05
    BR0063I 7 of 41 files processed - 14000.055 MB of 93092.766 MB done
    BR0204I Percentage done: 15.04%, estimated end time: 21:36
    BR0001I ********__________________________________________
    BR0202I Saving E:\ORACLE\DEV\SAPDATA2\SR3_7\SR3.DATA7
    BR0203I to /sap/DEVB/bdwkuudu/SR3.DATA7 ...
    <b>BR0278E Command output of 'F:\usr\sap\DEV\SYS\exe\uc\NTAMD64\sapftp.exe -v -n -i 192.168.200.3 -u H:\oracle\DEV\sapbackup\.bdwkuudu.ftp -b -c put E:\ORACLE\DEV\SAPDATA2\SR3_7\SR3.DATA7 /sap/DEVB/bdwkuudu/SR3.DATA7':
    Connected to 192.168.200.3 Port 21.
    220-FTP server ready.
    220 This is a private system - No anonymous login
    331 User sapbackup OK. Password required
    230-User sapbackup has group access to: administrator
    230-This server supports FXP transfers
    230-OK. Current restricted directory is /
    230-************************************************
    230-* Use SITE command to change client codepage: *
    230-* ie, site codepage [client codepage] *
    230 ************************************************
    200 TYPE is now 8-bit binary
    200 PORT command successful
    150 Connecting to port 4977
    NiWrite error: -6, bytes to send: 32767 bytes written: 0
    BR0280I BRBACKUP time stamp: 2007-10-23 03.08.37
    BR0279E Return code from 'F:\usr\sap\DEV\SYS\exe\uc\NTAMD64\sapftp.exe -v -n -i 192.168.200.3 -u H:\oracle\DEV\sapbackup\.bdwkuudu.ftp -b -c put E:\ORACLE\DEV\SAPDATA2\SR3_7\SR3.DATA7 /sap/DEVB/bdwkuudu/SR3.DATA7': 1
    BR0222E Copying E:\ORACLE\DEV\SAPDATA2\SR3_7\SR3.DATA7 to/from /sap/DEVB/bdwkuudu/SR3.DATA7 failed due to previous errors </b>
    BR0280I BRBACKUP time stamp: 2007-10-23 03.08.43
    BR0317I 'Alter tablespace PSAPSR3 end backup' successful
    BR0056I End of database backup: bdwkuudu.ans 2007-10-23 03.08.37
    BR0280I BRBACKUP time stamp: 2007-10-23 03.08.43
    BR0054I BRBACUP terminated with errors
    Any helpful information will be appreciated.
    regards!
    Thom

    this post is duplicated at Re: Backup to remote stage failed due to RFC error
    please only post your question once and only in 1 forum.
    thanks.

  • Online backup fail through DB13

    Dear experts,
    I am using sap BW 7.4 under oracle 11.0.2.4
    I am trying to take online backup on disk
    I select action whole database online backup + redo file backup as will as
    Full database online backup and BRACHIVE function is -sd
    but  backup was failed I am unable to resolve it  following are logs generated during backup
    #SAVED.... /oracle/online/beokvzrl/system.data1  #1/17
    BR0280I BRBACKUP time stamp: 2014-08-02 10:58:20
    BR0063I 17 of 17 files processed - 51610.133 of 51610.133 MB done
    BR0204I Percentage done: 100.00%, estimated end time: 10:58
    BR0001I **************************************************
    BR0280I BRBACKUP time stamp: 2014-08-02 10:58:20
    BR0317I 'Alter tablespace SYSTEM end backup' successful
    BR0252W Function kill() failed for '17891582:15' at location BrKill-3
    BR0253W errno 3: No such process
    BR0278I Command output of '/usr/sap/BWD/SYS/exe/run/brconnect':
    BR0801I BRCONNECT 7.40 (6)
    PID=17891582
    BR0252E Function fopen() failed for '/oracle/BWD/sapbackup/.user.pas' at location global_set-1
    BR0253E errno 13: Permission denied
    BR0074W BRCONNECT call failed
    BR0280I BRBACKUP time stamp: 2014-08-02 10:58:22
    BR0530I Cataloging backups of all database files...
    BR0278E Command output of 'SHELL=/bin/sh /oracle/BWD/112_64/bin/rman nocatalog':
    Recovery Manager: Release 11.2.0.4.0 - Production on Sat Aug 2 10:58:23 2014
    Copyright (c) 1982, 2011, Oracle and/or its affiliates.  All rights reserved.
    RMAN>
    RMAN> connect target *
    connected to target database: BWD (DBID=2340275772)
    using target database control file instead of recovery catalog
    RMAN> **end-of-file**
    RMAN>
    host command complete
    RMAN> 2> 3> 4> 5> 6> 7> 8> 9> 10> 11> 12> 13> 14> 15> 16> 17> 18> 19>
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of catalog command on default channel at 08/02/2014 10:58:25
    ORA-19564: error occurred writing 8192 bytes at block number 1
    ORA-27091: unable to queue I/O
    ORA-27041: unable to open file
    IBM AIX RISC System/6000 Error: 13: Permission denied
    Additional information: 3
    Additional information: 4
    Additional information: 4194434
    RMAN>
    Recovery Manager complete.
    BR0280I BRBACKUP time stamp: 2014-08-02 10:58:25
    BR0279E Return code from 'SHELL=/bin/sh /oracle/BWD/112_64/bin/rman nocatalog': 1
    BR0536E RMAN call for database instance BWD failed
    BR0200I BR_TRACE: location BrRmanCall-56, commands for RMAN in: /oracle/BWD/sapbackup/.beokvzrl.cmd
    @/oracle/BWD/sapbackup/..beokvzrl..cmd
    host '/usr/sap/BWD/SYS/exe/run/brtools -f delete /oracle/BWD/sapbackup/..beokvzrl..cmd';
    catalog datafilecopy
    '/oracle/online/beokvzrl/sr3.data1',
    '/oracle/online/beokvzrl/sr3.data2',
    '/oracle/online/beokvzrl/sr3.data3',
    '/oracle/online/beokvzrl/sr3.data4',
    '/oracle/online/beokvzrl/sr3.data5',
    '/oracle/online/beokvzrl/sr3.data6',
    '/oracle/online/beokvzrl/sr3740.data1',
    '/oracle/online/beokvzrl/sr3740.data2',
    '/oracle/online/beokvzrl/sr3740.data3',
    '/oracle/online/beokvzrl/sr3740.data4',
    '/oracle/online/beokvzrl/sr3740.data5',
    '/oracle/online/beokvzrl/sr3740x.data1',
    '/oracle/online/beokvzrl/sr3740x.data2',
    '/oracle/online/beokvzrl/sr3usr.data1',
    '/oracle/online/beokvzrl/undo.data1',
    '/oracle/online/beokvzrl/sysaux.data1',
    '/oracle/online/beokvzrl/system.data1'
    level 0 tag beokvzrl;
    exit;
    BR0280I BRBACKUP time stamp: 2014-08-02 10:58:25
    BR0532E Cataloging backups of all database files failed
    BR0056I End of database backup: beokvzrl.fnd 2014-08-02 10:58:25
    BR0280I BRBACKUP time stamp: 2014-08-02 10:58:25
    BR0054I BRBACKUP terminated with errors
    BR0280I BRBACKUP time stamp: 2014-08-02 10:58:25
    I am unable to understand why RMAN is use ?
    and what parameters are used when I will take backup on tape
    Kindly guide me
    Regards

    Dear Srivastava for your reply,
    I download latest brtools patch and apply it and change authorization  profile parameters is also OK ( I run whole database online backup from brtools using same profile it done successfully )
    full permission ( 777) in sapbackup folder and sub folder but through db13 backup is successfully with warning
    BR0204I Percentage done: 100.00%, estimated end time: 11:57
    BR0001I **************************************************
    BR0252W Function kill() failed for '10420324:15' at location BrKill-3
    BR0253W errno 3: No such process
    BR0278I Command output of '/usr/sap/BWD/SYS/exe/run/brconnect':
    BR0801I BRCONNECT 7.40 (10)
    PID=10420324
    BR0252E Function fopen() failed for '/oracle/BWD/sapbackup/.user.pas' at location global_set-1
    BR0253E errno 13: Permission denied
    BR0074W BRCONNECT call failed
    BR0280I BRBACKUP time stamp: 2014-08-04 11:57:59
    BR0340I Switching to the next online redolog file for database instance BWD ...
    BR0321I Switch to the next online redolog file for database instance BWD successful
    BR0117I ARCHIVE LOG LIST after backup for database instance BWD
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /oracle/BWD/oraarch/BWDarch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     838
    Next log sequence to archive   841
    Current log sequence           841              SCN: 28074154
    Database block size            8192             Thread: 1
    Current system change number   28074155         ResetId: 842452156
    BR0202I Saving space_log
    BR0203I to /oracle/bck/online/BWD ...
    BR0202I Saving /oracle/BWD/sapbackup/beolgapq.and
    BR0203I to /oracle/bck/online/BWD ...
    BR0202I Saving /oracle/BWD/sapbackup/backBWD.log
    BR0203I to /oracle/bck/online/BWD ...
    BR0056I End of database backup: beolgapq.and 2014-08-04 11:58:01
    BR0280I BRBACKUP time stamp: 2014-08-04 11:58:01
    BR0053I BRBACKUP completed successfully with warnings or non-fatal errors
    1. BR0252W Function kill() failed for '10420324:15' at location BrKill-3
        BR0253W errno 3: No such process
    2. BR0252E Function fopen() failed for '/oracle/BWD/sapbackup/.user.pas' at location  global_set-1
    BR0253E errno 13: Permission denied
    BR0074W BRCONNECT call failed
    why it backup not open file .user.pas ( it is not exist in this folder )
    Kindly guide me
    Regards

  • Online backup failed

    Hello!
    I have a problem with online backup on my Windows machine.
    I'm using brtools on dbhost from application server.
    The same backup profile with offline options finished ok, but with backup type "online" I'm getting the following error.
    BR0201I Compressing C:\ORACLE\VBP\SAPDATA2\SR3_10\SR3.DATA10
    BR0203I to C:\oracle\backup\VBPdb\bdylcsei\SR3.DATA10.Z ...
    BR0280I BRBACKUP time stamp: 2008-07-25 12.28.46
    BR0266E Program '
    BIAPP\sapmnt\VBP\SYS\exe\uc\NTAMD64\mkszip -c C:\ORACLE\VBP\SAPDATA2\SR3_10\SR3.DATA10 > C:\oracle\backup\VBPdb\bdylcsei\SR3.DATA10.Z' interrupted, exit status: c00000fd
    BR0272E Execution of program '
    BIAPP\sapmnt\VBP\SYS\exe\uc\NTAMD64\mkszip -c C:\ORACLE\VBP\SAPDATA2\SR3_10\SR3.DATA10 > C:\oracle\backup\VBPdb\bdylcsei\SR3.DATA10.Z' through pipe failed
    BR0224E Compressing C:\ORACLE\VBP\SAPDATA2\SR3_10\SR3.DATA10 to C:\oracle\backup\VBPdb\bdylcsei\SR3.DATA10.Z failed due to previous errors
    BR0280I BRBACKUP time stamp: 2008-07-25 12.28.50
    BR0317I 'Alter tablespace PSAPSR3 end backup' successful
    BR0056I End of database backup: bdylcsei.and 2008-07-25 12.28.46
    BR0280I BRBACKUP time stamp: 2008-07-25 12.28.50
    BR0054I BRBACKUP terminated with errors
    OS: windows 2003
    SAPPlatform: NetWeaver 2004s
    Oracle: 10.2.0.2
    Kernel Patch level: 133
    Please help me and my productive instance

    Hi  ,
    I think this is your solution :
    Note 896160 - BRBACKUP ignores file copy errors during disk backups
    Note Language:       Version: 3     Validity: valid since 07.02.2007     
    PDF     Download Corrections     Compare Versions     SSCR
         Go to SAP Note:  Display     
    Content:  Summary  |  Header Data  |  Releases  |  Related Notes
    Summary
    Symptom
    During a disk backup using a copying process (with or without compression), BRBACKUP ignores any copy errors and the complete backup is seen as having been successful, even though not all files were backed up, for example:
    BR0201I Compressing F:\ORACLE\UQA\SAPDATA3\UQA620_7\UQA620.DATA7
    BR0203I to F:\oracle\UQA\sapbackup\database\bdreqpjw\UQA620.DATA7.Z ...
    BR0266E Program 'E:\usr\sap\UPR\SYS\exe\run\mkszip -c F:\ORACLE\UQA\SAPDATA3\UQA620_7\UQA620.DATA7 > F:\oracle\UQA\sapbackup\database\bdreqpjw\UQA620.DATA7.Z' interrupted, exit status: c0000094
    BR0272E Execution of program 'E:\usr\sap\UPR\SYS\exe\run\mkszip -c F:\ORACLE\UQA\SAPDATA3\UQA620_7\UQA620.DATA7 > F:\oracle\UQA\sapbackup\database\bdreqpjw\UQA620.DATA7.Z' through pipe failed
    BR0224E Compressing F:\ORACLE\UQA\SAPDATA3\UQA620_7\UQA620.DATA7 to F:\oracle\UQA\sapbackup\database\bdreqpjw\UQA620.DATA7.Z failed due to previous errors
    BR0053I BRBACKUP completed successfully with warnings
    Other terms
    BR*Tools, BRBACKUP
    Reason and Prerequisites
    There are program errors in BRBACKUP 7.00 patch level 0 to 6 and BRBACKUP 6.40 patch level 25 to 34.
    Solution
    These errors are corrected in BRBACKUP 7.00 patch 9.
    These errors are corrected in BRBACKUP 6.40 patch 35.
    For more information about downloading patches, see Notes 12741 and 19466.

  • Regular Online backup fail

    Hi Experts
    The online backup on the Quality servers are failing regularly.
    Here is the log:
    BR0051I BRBACKUP 7.00 (32)     
    BR0055I Start of database backup: bdyuisgz.anf 2008-09-11 21.13.49
    BR0484I BRBACKUP log file: /oracle/Q10/sapbackup/bdyuisgz.anf
    BR0477I Oracle pfile /oracle/Q10/102_64/dbs/initQ10.ora created from spfile /oracle/Q10/102_64/dbs/spfileQ10.ora
    BR0280I BRBACKUP time stamp: 2008-09-11 21.14.01
    BR0319I Control file copy created: /oracle/Q10/sapbackup/cntrlQ10.dbf 20201472
    BR0101I Parameters
    Name                           Value
    oracle_sid                     Q10
    oracle_home                    /oracle/Q10/102_64
    oracle_profile                 /oracle/Q10/102_64/dbs/initQ10.ora
    sapdata_home                   /oracle/Q10
    sap_profile                    /oracle/Q10/102_64/dbs/initQ10.sap
    backup_mode                    ALL
    backup_type                    online_cons
    backup_dev_type                util_file
    util_par_file                  /oracle/Q10/102_64/dbs/initQ10_HOT.utl
    system_info                    oraq10/oraq10 soaqa2 HP-UX B.11.23 U ia64
    oracle_info                    Q10 10.2.0.2.0 8192 2551 380189805 abcqa2 US7ASCII AL16UTF16
    sap_info                       700 SAPR3 UPG N0052289055 R3_ORA 0820023982
    make_info                      hpia64 OCI_102 Feb  6 2008
    command_line                   brbackup -c -d util_file -t online_cons -u system/******** -m all -r /oracle/Q10/102_64/dbs/initQ10_HOT.utl
    BR0116I ARCHIVE LOG LIST before backup for database instance Q10
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /oracle/Q10/saparch/Q10arch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     2548
    Next log sequence to archive   2551
    Current log sequence           2551             SCN: 380189805
    Database block size            8192             Thread: 1
    Current system change number   380191568        ResetId: 662720157
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File                                                       Size   Id.     Device  Link    Type       MaxSize     IncrSize  BlkSize
    PSAPACCTITD    ONLINE%    ONLINE    /oracle/Q10/sapdata3/acctitd_2/acctitd.data2          734003200   87  1073807363  NOLINK  FILE             0            0     8192
    PSAPACCTITD    ONLINE%    ONLINE    /oracle/Q10/sapdata3/acctitd_3/acctitd.data3          542318592  133  1073807363  NOLINK  FILE             0            0     8192
    PSAPACCTITD    ONLINE%    ONLINE    /oracle/Q10/sapdata3/acctitd_4/acctitd.data4          705019904  134  1073807363  NOLINK  FILE             0            0     8192
    PSAPACCTITD    ONLINE%    ONLINE    /oracle/Q10/sapdata3/acctitd_5/acctitd.data5          916520960  135  1073807363  NOLINK  FILE             0            0     8192
    PSAPACCTITD    ONLINE%    ONLINE    /oracle/Q10/sapdata3/acctitd_6/acctitd.data6         1191477248  136  1073807363  NOLINK  FILE             0            0     8192
    PSAPACCTITD    ONLINE%    ONLINE    /oracle/Q10/sapdata9/acctitd_1/acctitd.data1         1073750016   61  1073807369  NOLINK  FILE             0            0     8192
    PSAPACCTITI    ONLINE     ONLINE    /oracle/Q10/sapdata10/acctiti_1/acctiti.data1         209
    Program:##/usr/sap/Q10/SYS/exe/run/backint 4.5GA
    Input File:##/oracle/Q10/sapbackup/.bdyuisgz.lst
    Profile:##/oracle/Q10/102_64/dbs/initQ10_HOT.utl
    Function:##BACKUP
    Backup Type:##BACKUP_FILE
    ERROR: executing command  /usr/openv/netbackup/bin/bpbackup -w -t 17 -S babcnetbackup.abc.abcd.us  -s Default-Application-Backup -L /oracle/Q10/sapscript/backint_dir/.backint.log.0.1221192842 -k ".bdyuisgz.lst" -f /oracle/Q10/sapscript
    Status = 230 : the specified policy does not exist in the configuration database
    [] Backup started 09/11/2008 21:14:03
    [] 21:14:06 Initiating backup
    [] 21:14:11 INF - Server status = 230
    [] 21:14:11 INF - Server status = 230
    [] EXIT STATUS 230: the specified policy does not exist in the configuration database
    ERR - job (19621) failed status (230)
    ERROR: wait for process to complete
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata3/acctitd_2/acctitd.data2
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata3/acctitd_4/acctitd.data4
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata3/acctitd_5/acctitd.data5
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata3/acctitd_6/acctitd.data6
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata9/acctitd_1/acctitd.data1
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata10/acctiti_1/acctiti.data1
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata2/acctiti_2/acctiti.data2
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata3/bkpfd_2/bkpfd.data2
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata9/bkpfd_1/bkpfd.data1
    BR0233E Backup utility has reported an error while saving file /oracle/Q10/sapdata10/bkpfi_1/bkpfi.data1
    BR0280I BRBACKUP time stamp: 2008-09-11 21.14.15
    BR0279E Return code from '/usr/sap/Q10/SYS/exe/run/backint -u Q10 -f backup -i /oracle/Q10/sapbackup/.bdyuisgz.lst -t file -p /oracle/Q10/102_64/dbs/initQ10_HOT.utl -c': 2
    BR0232E 0 of 236 files saved by backup utility
    BR0280I BRBACKUP time stamp: 2008-09-11 21.14.15
    BR0231E Backup utility call failed
    BR0280I BRBACKUP time stamp: 2008-09-11 21.14.19
    BR0317I 'Alter database end backup' successful
    BR0056I End of database backup: bdyuisgz.anf 2008-09-11 21.14.15
    BR0280I BRBACKUP time stamp: 2008-09-11 21.14.19
    BR0054I BRBACKUP terminated with errors
    Hope to get some guidance.
    Thanks,
    Sonu

    Hi Sonu,
    Could you please help me . I'm facing the same issue in DEv box. for reference i'm pasting error too .
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat_1/dat.data1
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat_2/dat.data2
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat_3/dat.data3
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat_4/dat.data4
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat_5/dat.data5
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat_6/dat.data6
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat_7/dat.data7
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_10/dat.data10
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_11/dat.data11
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_12/dat.data12
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_13/dat.data13
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_14/dat.data14
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_15/dat.data15
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_16/dat.data16
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_17/dat.data17
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_18/dat.data18
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_19/dat.data19
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_8/dat.data8
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata2/dat_9/dat.data9
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_21/dat.data21
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_22/dat.data22
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_23/dat.data23
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_24/dat.data24
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_25/dat.data25
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_26/dat.data26
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_27/dat.data27
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_28/dat.data28
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_29/dat.data29
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_30/dat.data30
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_31/dat.data31
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_32/dat.data32
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_33/dat.data33
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_34/dat.data34
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata3/dat_35/dat.data35
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata4/dat_36/dat.data36
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat700_1/dat700.data1
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat700_2/dat700.data2
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat700_3/dat700.data3
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat700_4/dat700.data4
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat700_5/dat700.data5
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat700_6/dat700.data6
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/dat700_7/dat700.data7
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata4/dat700_8/dat700.data8
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/datdb_1/datdb.data1
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/datdb_2/datdb.data2
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/datdb_3/datdb.data3
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata4/datdb_4/datdb.data4
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/datusr_1/datusr.data1
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/undo_1/undo.data1
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/sysaux_1/sysaux.data1
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapdata1/system_1/system.data1
    BR0233E Backup utility has reported an error while saving file /oracle/WSG/sapbackup/cntrlWSG.dbf
    BR0280I BRBACKUP time stamp: 2009-07-13 20.57.08
    BR0279E Return code from '/usr/sap/WSG/SYS/exe/run/backint -u WSG -f backup -i /oracle/WSG/sapbackup/.beazyhbs.lst -t file_online -p /oracle/WSG/102_64/dbs/initWSG.utl -c': 2
    BR0232E 0 of 52 files saved by backup utility
    BR0280I BRBACKUP time stamp: 2009-07-13 20.57.08
    BR0231E Backup utility call failed
    BR0056I End of database backup: beazyhbs.anf 2009-07-13 20.57.08
    BR0280I BRBACKUP time stamp: 2009-07-13 20.57.10
    BR0054I BRBACKUP terminated with errors
    Thanks
    Dharmendra.

  • Question: Will online backup impact database performance for DB6 V9.1

    Dear All,
    I would like to know will online backup impact the database performance? for eg: access will be slower if online backup is currently running. Appreciate if someone can shed some light on this as i'm new to DB6.
    I know for oracle it will impact due the performance due to tablespace are locked in backup mode and this will increaes I/O load due to every block is written to redo log during backup instead of just the changes.
    Hope to hear from you soon.
    Cheers,
    Nicholas Chang.

    Hello Nicholas,
    Here is some additional information on throttling utilities such as online backups:
    SET UTIL_IMPACT_PRIORITY command
    Changes the impact setting for a running utility. Using this command, you can:
    throttle a utility that was invoked in unthrottled mode
    unthrottle a throttled utility (disable throttling)
    reprioritize a throttled utility (useful if running multiple simultaneous throttled utilities)
    Scope
    Authorization
    One of the following:
    sysadm
    sysctrl
    sysmaint
    Required connection
    Instance. If there is more than one partition on the local machine, the attachment should be made to the correct partition. For example, suppose there are two partitions and a LIST UTILITIES command resulted in the following output:
    ID = 2
    Type = BACKUP
    Database Name = IWZ
    Partition Number = 1
    Description = online db
    Start Time = 07/19/2007 17:32:09.622395
    State = Executing
    Invocation Type = User
    Throttling:
    Priority = Unthrottled
    Progress Monitoring:
    Estimated Percentage Complete = 10
    Total Work = 97867649689 bytes
    Completed Work = 10124388481 bytes The instance attachment must be made to partition 1 in order to issue a SET UTIL_IMPACT_PRIORITY command against the utility with ID 2. To do this, set DB2NODE=1 in the environment and then issue the instance attachment command.
    Command syntax
    >>-SET UTIL_IMPACT_PRIORITY FORutility-idTOpriority----><
    Command parameters
    utility-id
    ID of the utility whose impact setting will be updated. IDs of running utilities can be obtained with the LIST UTILITIES command.
    TO priority
    Specifies an instance-level limit on the impact associated with running a utility. A value of 100 represents the highest priority and 1 represents the lowest priority. Setting priority to 0 will force a throttled utility to continue unthrottled. Setting priority to a non-zero value will force an unthrottled utility to continue in throttled mode.
    Examples
    The following example unthrottles the utility with ID 2.
       SET UTIL_IMPACT_PRIORITY FOR 2 TO 0
    The following example throttles the utility with ID 3 to priority 10. If the priority was 0 before the change then a previously unthrottled utility is now throttled. If the utility was previously throttled (priority had been set to a value greater than zero), then the utility has been reprioritized.
       SET UTIL_IMPACT_PRIORITY FOR 3 TO 10
    Relationship between UTIL_IMPACT_LIM and UTIL_IMPACT_PRIORITY settings
    The database manager configuration parameter util_impact_lim sets the limit on the impact throttled utilities can have on the overall workload of the machine. 0-99 is a throttled percentage, 100 is no throttling.
    The SET UTIL_IMPACT_PRIORITY command sets the priority that a particular utility has over the resources available to throttled utilities as defined by the util_impact_lim configuration parameter. (0 = unthrottled)
    Using the backup utility as an example, if the util_impact_lim=10, all utilities can have no more than a 10% average impact upon the total workload as judged by the throttling algorithm. Using two throttled utilities as an example:
    Backup with util_inpact_priority 70
    Runstats with util_impact_priority 50
    Both utilities combined should have no more than a 10% average impact on the total workload, and the utility with the higher priority will get more of the available workload resources. For both the backup and runstats operations, it is also possible to declare the impact priority within the command line of that utility. If you do not issue the SET UTIL_IMPACT_PRIORITY command, the utility will run unthrottled (irrespective of the setting of util_impact_lim).
    To view the current priority setting for the utilities that are running, you can use the LIST UTILITIES command.
    Usage notes
    Throttling requires that an impact policy be defined by setting the util_impact_lim configuration parameter.
    Regards,
    Adam Wilson
    SAP Development Support

  • Oracle Restore from Online backup without any archive logs

    Hi,
    May be a dumb question. If I have a good online backup (say it took 2 hours to do that. And there is database activity while backup is going on), and lost all the archive logs happened after the online backup, is it possible at all to do the restore using that backup? complete or incomplete? and bring back the database to normal operation mode? Some details on this.
    Thanks.

    Let us see the reasoning behind this.
    Database:WORLDDB
    WORLDDB configuration:-
    TBSP_WDB
    ->TBSP_WDB_01.dbf
    ->TBSP_WDB_02.dbf
    SYSTEM
    ->SYSTEM.dbf
    USERS
    and so on for the tablespaces.
    CASE 1:-
    User managed backup.
    You issue
    ALTER TABLESPACE TBSP_WDB BEGIN BACKUP;
    DB keeps working all transactions are recorded in the redo stream, the scn information is not updated in the file header.
    Also note that the other tablespaces were been continuously worked on hence their scn numbers are a moving target.
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96572/osbackups.htm#10012
    So if you begin tablespace TBSP_WDB backup at time t1 and by the time you are done with your backups you are at time t2, you will need all of the archive log's between time t1 and t2.
    CASE 2:-
    If we do with rman, rman takes care of the file header update information and goes on its merry way, those details are hidden from the end user. If one of the tablespace is fractured, updated while backups are going on , rman knows about it and will re-read the affected blocks in question.
    My thinking would be that you might need archive logs, unless it is a cold backup, with switch logfiles in between.
    If you do hot backups you need archivelogs is my thought. The number of archivelogs required will be decreased considerably through rman.
    http://download-east.oracle.com/docs/cd/B10501_01/server.920/a96566/rcmconc1.htm#458821
    Summary:-
    Either way archivelogs are needed.

Maybe you are looking for

  • Open Items in GR/IR Account

    Hello. I created a PO for $100 with Quantity 1.   Then later a fully received using transaction MIRO.   Finally I enter the Invoice for paid the $100 using as reference the PO. So, there is no pending amount in GR/IR Account. But when a list the Open

  • Thinkpad X230 displayport goes blank on resolution switch

    Hi, I'm using an external monitor NEX MultiSync EA244WMi connected via Displayport to my X230 (Windows 7 Pro 64bit). I happen to use different graphics settings for various purposes - from extended desktop at full resultion to external only at 1024x7

  • Do I have to use lookup() to get a reference of remote object?

    Hello, I appreciate the help from you guys in advance. My question is, do I have to use lookup() to get the reference to a remote object? Right now I want to pass the remote object itself which can be serialized via stream. I am not sure if this way

  • How to Create simple WCF/REST (JOSN,get and post) and deploy to Sharepoint 2013 Server.

    HI All,    I wan to create a simple WCF/REST service and deployed to SharePoint server , i have created some sample svc file and put in to _vti_bin folder using SharePoint solution using vs 2013 but its not accessible from IIS its always asking the W

  • How can i publish in SOAMANAGER

    Hey folks, one issue, we have the problem to publish our Support Packages (Software Compoment), that we have installed in our ECC 6.0 System. The SAP PI System don't find our Compoment in the Systemlandscape and therefore we heard that we must publis