ORA-00081 & ORA-00600 while analyzing tables in 10g 10.2.0.2

Did anyone face the below issue while analyzing the tables and table partitions?
ORA-00081: address range [0x600000000009EC20, 0x600000000009EC24) is not readable
ORA-00600: internal error code, arguments: [qkaffsindex3], [], [], [], [], [], [], []
The failing sql is
'ANALYZE TABLE "SAP<SID>"."/BIC/E100076" PARTITION ("/BIC/E100076142008007") COMPUTE STATISTICS FOR TABLE FOR COLUMNS SIZE 75 "SID_0FISCPER","KEY_
1000761","KEY_1000762","KEY_1000763","KEY_1000765","KEY_1000766","KEY_1000767","KEY_100076P","KEY_ZXGL_C19T","KEY_ZXGL_C19U" FOR ALL LOCAL INDEX
ES'
Oracle version is 10.2.0.2 and OS is HP-UX Itanium ia64 11.23.

I almost forgot it, anyway:
Do not use the COMPUTE and ESTIMATE clauses of ANALYZE statement to collect optimizer statistics. These clauses are supported solely for backward compatibility and may be removed in a future release. The DBMS_STATS package collects a broader, more accurate set of statistics, and gathers statistics more efficiently.
You may continue to use ANALYZE statement to for other purposes not related to optimizer statistics collection:
To use the VALIDATE or LIST CHAINED ROWS clauses
To collect information on free list blocks
Further reference:
http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14211/stats.htm#i41282
Adith

Similar Messages

  • Dbms_xmlschema.registerschema, (ORA-31084: error while creating table )..

    Hello,
    I have some problems with dbms_xmlschema.registerschema
    My database is: Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit Production
    My XSD schema is (SEPA pain.002.001.03.xsd) also available on this url: http://code.google.com/p/leontestbed/source/browse/trunk/bc2/sample/Schema/pain.002.001.03.xsd?r=241
    After
    begin
       DOK_XML_UTIL.p_vnesi_xsd_blob(401941242); -- store a XSD on file system from blob field
       dbms_xmlschema.registerschema(
        schemaurl => 'http://localhost/TEST1.XSD',
        schemadoc => bfilename('ETAX_LOAD','TEST1.XSD'),
        csid => nls_charset_id('AL32UTF8'));
    commit;
    end;I get:
    ORA-31084: error while creating table "INIS_PROD"."Document2781_TAB" for element "Document"
    ORA-02320: failure in creating storage table for nested table column "XMLDATA"."CstmrPmtStsRpt"."OrgnlPmtInfAndSts"
    ORA-01792: maximum number of columns in a table or view is 1000
    ORA-02310: exceeded maximum number of allowable columns in table
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 37
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 65
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 136
    ORA-06512: at line 4
    What I'am doing wrong or what is the reason for this error..

    Arrgghhh.....
    begin
       DOK_XML_UTIL.p_vnesi_xsd_blob(401941242);
       dbms_xmlschema.registerschema(
        schemaurl => 'http://localhost/TEST1.XSD',
        schemadoc => bfilename('ETAX_LOAD','TEST1.XSD'),
        csid => nls_charset_id('AL32UTF8')
        , local => true
      , genTypes => false
      , genTables => false);
    commit;
    end;sorry...

  • Raising ora-01426 error while truncating table

    Hi,
    We have a procedure which executes in the following process for few set of tabls
    1. disables the constraints
    2. truncating the tables
    3. enabling the constraints
    but after processing for 5 tables, while truncating the error throws
    BEGIN <procedure name >; END;
    ERROR at line 1:
    ORA-01426: numeric overflow
    ORA-06512: at "<procedurename> ", line 33
    ORA-06512: at line 1
    this line 33 point to execute immeidate 'truncate table < table name>
    Can i know what would be reason for throwing ' numeric overflow' error while truncating table..
    Thanks in advance

    user9080289 wrote:
    thanks.
    My oracle verision is 11gThen you could have the bug described there. Follow the instruction how to workaround (monitoring flush, set stats to low value) or apply the patch #8226471.
    Nicolas.

  • ORA-20000: Unable to analyze TABLE "ECI"."COUNTRY"

    Oracle9i 9.2.0.7 on Windows Server 2003 32bit
    Using the "ANALYZE" in the Enterrpise Manager Console
    begin
    dbms_stats.gather_table_stats(ownname=>'ECI',tabname=>'COUNTRY',partname=>NULL);
    end;
    ORA-20000: Unable to analyze TABLE "ECI"."COUNTRY", insufficient priviledges or does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 10292
    ORA-06512: at "SYS.DBMS_STATS", line 10315
    ORA-06512: at line 2
    Using SQLPLUS
    SQL>begin
    2>dbms_stats.gather_table_stats(ownname=>'ECI',tabname=>'country',partname=>NULL);
    3>end;
    4>/
    ORA-20000: Unable to analyze TABLE "ECI"."COUNTRY", insufficient priviledges or does not exist
    ORA-06512: at "SYS.DBMS_STATS", line 10292
    ORA-06512: at "SYS.DBMS_STATS", line 10315
    ORA-06512: at line 2
    COMMENT:I noticed here that eventhough I specifically used (tabname=>'country') it still used "ECI"."COUNTRY"(ALL CAPS) in executing my statement
    I also tested on other procedure.
    Using SQLPLUS
    SQL>begin
    2>dbms_redefinition.can_redef_table('ECI','country',dbms_redefinition.cons_use_pk);
    3>end;
    4>/
    BEGIN
    ERROR at line 1:
    ORA-00942: table or view does not exist
    ORA-06512: at "SYS.DBMS_REDEFINITION", line 8
    ORA-06512: at "SYS.DBMS_REDEFINITION", line 247
    ORA-06512: at line 2
    I don't understand why this error happens because
    a) the schema and table exist (I double checked)
    b) the error only happens on a single schema for only the old tables, when I create new tables I could "ANALYZE" it. I also can "ANALYZE" the indexes.
    c)I have used both the sys and system user logging in as SYSDBA
    In the ff exercise, I noticed that "ECI"."productrange" will work but "ECI"."PRODUCTRANGE" won't:
    SQL>select count(*) from "ECI"."productrange";
    COUNT(*)
    8
    SQL>select count(*) from "ECI"."PRODUCTRANGE";
    select count(*) from "ECI"."PRODUCTRANGE"
    ERROR at line 1:
    ora-00942: TABLE OR VIEW DOES NOT EXIST
    Can anyone kindly help me?

    You should not be creating tables in Oracle with names enclosed in double quotes. In that case Oracle preserves the case, making it difficult for others to identify the table.
    Create the table without using double quotes (may be CTAS) and everything should work fine.

  • ORA-04092 trying to analyze table

    Hi,
    I was trying to analyze some tables issuing:
    analyze table owner.table_name compute statistics;
    Immediately raises the ora-04092, as far as I seen, read, and googled, this ORA error occurs only when someone try to commit inside a trigger, but clearly this is not the case.
    And even in some web applications this error appears.
    This error started to occur after session limit exceeded, doesn't sound related to me, but maybe it can be interesting information.
    Any suggestions please, I'm comfused.
    Regards

    Here more information:
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE 10.2.0.4.0 Production
    TNS for Linux: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SO: RHELAS 5
    And according recomendation, I tryed to use DBMS_STAT, with same results:
    SQL> conn system/*******@siin
    Connected.
    SQL> conn mailedu/*******@siin
    ERROR:
    ORA-04092: cannot COMMIT in a trigger
    ERROR:
    ORA-24315: illegal attribute type
    Warning: You are no longer connected to ORACLE.
    SQL> conn mailedu/********@siin
    ERROR:
    ORA-24315: illegal attribute type
    SQL> conn system/********@siin
    ERROR:
    ORA-24315: illegal attribute type
    Once I restart sqlplusw, and I could connect (just the first connect is successfull) I tryed with dbms_stats:
    SQL> exec dbms_stats.gather_schema_stats ( -
    ownname => 'MAILEDU', -
    options => 'GATHER' );BEGIN dbms_stats.gather_schema_stats ( ownname => 'MAILEDU', options => 'GATHER' ); END;
    ERROR at line 1:
    ORA-04092: cannot COMMIT in a trigger
    ORA-06512: at "SYS.DBMS_STATS", line 14002
    ORA-06512: at "SYS.DBMS_STATS", line 13974
    ORA-06512: at line 1
    Looking further inside the forum I found this thread:
    stupid ora-04092 error message
    In the conversation it is mentioned that according document Link:[7886990|https://metalink.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocDsrc=Bug&bmDocTitle=AFTER%20OCCURRING%20ORA-18,%20ORACLE%20THROWS%20ORA-4092%20CONTINOUSLY&bmDocID=7886990&viewingMode=1143&from=BOOKMARK&bmDocType=BUG))]
    it can occur after ORA-00018 maximum number of sessions exceeded
    this one is my scenario,
    And...
    Bug No: 6977167
    Filed 16-APR-2008 Updated 19-AUG-2009
    Product Oracle Server - Enterprise Edition Product Version 10.2.0.2
    Platform Linux x86-64 Platform Version rel4
    Database Version 10.2.0.2 Affects Platforms Generic
    Severity Severe Loss of Service Status Development to Q/A
    Base Bug N/A Fixed in Product Version 11.2
    So I would like to mark this as a known bug, but I don't know how to proeced.
    Regards

  • Analyze table + ORA-3113

    We have a process that executes weekly for analyzing tables with the option estimate statistics.
    In only one database it occurs the error ORA-03113, end of comunication channel.
    Is there solution for this problem?
    Thanks
    Angie

    The ORA-3113 error occurs when your session lose connetion ith the database for some reason. There is no single cause for this error, or at least none I was ever able to find in several attempts to solve different problems. Your only hope is intensive problem solving. A couple of possibilites to help you get started.
    If you are getting this on an analyze, the most likely reason is a corrupt data block in the datafile. This could be either at the Oracle level or at the OS level. Try to determine if it always occurs for the same object. If so, then try to analyze it manually using validate structure. If this fails then try exporting the object, re-create it and then import the data into the newly created object.
    Another possibility is that some other process is doing something that analyze cannot cope with. Check if the error occurs at the same time every time. If so, check if there are other jobs running against the database at the same time. Try rescheduling the other jobs, or the analyze to see if that solves the problem. It is also possible that an OS job could cause this even if it is not using the database (We had a backup job that would occasionally eat our server. This sometimes caused Oracle connections to time out and raise 3113 when the backup job finished.).
    Check any OS error logs available to see if anything shows up around the time of the 3113 error.
    You should also check the Oracle alert logs, and look for trace files in udump, bdump and cdump directories.
    Good Luck.
    null

  • OWB ORA-2000 unable to analyze table

    During execution I received the error above. In the mapping, I have two targets in two different schema's. I receive the error on the target that is in a different schema than the mapping.
    Is there a workaround? We do not have rights to grant analyze any table to the schema owner of the mapping.

    In OWB select Mapping, context menu Properties -> Code generation options -> Change Analyze table statements to false.
    Bye
    Detlef

  • ORA-00060: deadlock detected while waiting for resource with Tbs Read-only

    Hi all,
    We're using Oracle 10.2.0.1 and 9.2.0.4.
    I'm testing the performing of a procedure that inserts, like this:
    CREATE OR REPLACE PROCEDURE P$TAD_TEST
    IS
    TYPE T_T1_C1          IS TABLE OF T1.C1%TYPE INDEX BY PLS_INTEGER;
    TYPE T_T1_DT           IS TABLE OF T1.DT%TYPE INDEX BY PLS_INTEGER;
    P_C1 T_T1_C1;
    P_DT T_T1_DT;
    P_RESULT NUMBER;
    BEGIN
    FOR j IN 1..4032 LOOP
    P_C1(j) := j;
    P_DT(j) := SYSDATE + (j/24/60);
    END LOOP;
    FORALL i IN P_C1.FIRST..P_C1.LAST SAVE EXCEPTIONS
    INSERT INTO T1 VALUES (P_C1(i), P_DT(i));
    EXCEPTION
    WHEN OTHERS THEN
    P_RESULT := SQLCODE;
    END;
    The table T1 is partitioned across 10 tablespaces. The test consist to take
    these tablespace read-only and perform the procedure, and analyze the results,
    like erros.
    but when I perform the procedure, The alert.log indicates the error
    ORA-00060: deadlock detected while waiting for resource.
    Why this occurs only the tablespaces are read-only?
    thank you!!!!

    Hi,
    yesterday we got this error again(in fact twice) and we were able to get the trace file. It says this is NOT oracle error. i was wrong in suspecting Oracle. This is the trace file details. i dont know how to debug this. Any help appreciated.
    *** 2010-06-15 16:24:29.243
    *** ACTION NAME:() 2010-06-15 16:24:29.231
    *** MODULE NAME:(JDBC Thin Client) 2010-06-15 16:24:29.231
    *** SERVICE NAME: 2010-06-15 16:24:29.231
    *** SESSION ID:(482.4266) 2010-06-15 16:24:29.231
    DEADLOCK DETECTED ( ORA-00060 )
    [Transaction Deadlock]
    The following deadlock is not an ORACLE error. It is a
    deadlock due to user error in the design of an application
    or from issuing incorrect ad-hoc SQL. The following
    information may aid in determining the deadlock:
    Deadlock graph:
    ---------Blocker(s)-------- ---------Waiter(s)---------
    Resource Name process session holds waits process session holds waits
    TX-00300021-0000b52d 209 482 X 247 474 S
    TX-002a0009-00011b24 247 474 X 209 482 S
    session 482: DID 0001-00D1-0000000A session 474: DID 0001-00F7-00000008
    session 474: DID 0001-00F7-00000008 session 482: DID 0001-00D1-0000000A
    Rows waited on:
    Session 474: obj - rowid = 0000CED4 - AAAM7UAAxAAAVgSAAA
    (dictionary objn - 52948, file - 49, block - 88082, slot - 0)
    Session 482: obj - rowid = 0000D8BF - AAANi/AAuAAB+z/AAA
    (dictionary objn - 55487, file - 46, block - 519423, slot - 0)
    Information on the OTHER waiting sessions:
    Session 474:
    pid=247 serial=31796 audsid=25502259 user: 62/USER
    O/S info: ....
    program: JDBC Thin Client
    application name: JDBC Thin Client, hash value=2546894660
    Current SQL Statement:
    INSERT QUERY1
    End of information on OTHER waiting sessions.
    Current SQL statement for this session:
    INSERT QUERY2
    Thanks,
    AK

  • Ora-00081

    hi,
    I am using the DB link to connect to another DB to collect the TBS information. But i am receiving the below mentioned error while running the select query in TOAD.
    ORA-00081 - address range is not readable...
    ORA-600 - internal error code (15160)
    ora-2063.
    Could anyone kindly share how do we resolve this issue.
    but for other db's its working fine.
    Rgds...

    ORA-00081 - address range is not readable...
    ORA-600 - internal error code (15160)
    ora-2063.ORA-00081 refers to addressing invalid memory addresses
    ORA-00600 is an internal DB error
    Contact Oracle support and start an S/R.
    They know how to help here

  • Ora-04021 timeout occurred while waiting to lock object

    Hai All
    When adding a column into a table then an error comes error
    Error Message:
    ORA-04021: timeout occurred while waiting to lock object .....
    How it happens ...what is the solution....please help
    Shiju..

    Hi
    Identify the session that is using this object, kill it and then perform the ALTER table... or wait until the session that is accessing this table release it.
    Rgds
    Adnan

  • ORA-00060: deadlock detected while waiting for resource CLOSE cursor

    Hi,
    I am a new member of this forum. I am working with a problem we got a few weeks ago. It is from a Pro C batch executable running on 10 threads dealing with >800 data accessed from multiple tables. The error as reported came from a package.function call.
    This is the error I encountered:
    process_item~G****, D***~-60~ORA-00060: deadlock detected while waiting for resource~PACKAGE ERROR = CLOSE cursor C_***** in package R***.I*** 7641
    The cursor is a simple SELECT cursor without Table or Record locking.
    My questions are:
    *Upon the occurrence of this error, is the execution already at the CLOSE cursor line or did the error occurred between the OPEN cursor and the CLOSE cursor? There are several lines of code in between OPEN and CLOSE:
    - one that calls for a package.function that simply stores parameter values to a variable
    - another one which fetches the cursor. The group that holds the cursor values is only used by a single function in the package
    *Is it possible for this CLOSE cursor to cause a deadlock? What could have caused this?
    *From what I know, Oracle deals with deadlocks by aborting the deadlocking process while others continue, but this deadlock caused our program to hang. How is this possible? Could the root cause of the deadlock be from our threading program? This is a rare occurrence and happened only twice this year.
    Thanks,
    Raf

    Raf Serrano wrote:
    Hi,
    I am a new member of this forum. I am working with a problem we got a few weeks ago. It is from a Pro C batch executable running on 10 threads dealing with >800 data accessed from multiple tables. The error as reported came from a package.function call.
    This is the error I encountered:
    process_item~G****, D***~-60~ORA-00060: deadlock detected while waiting for resource~PACKAGE ERROR = CLOSE cursor C_***** in package R***.I*** 7641
    The cursor is a simple SELECT cursor without Table or Record locking.
    My questions are:
    *Upon the occurrence of this error, is the execution already at the CLOSE cursor line or did the error occurred between the OPEN cursor and the CLOSE cursor? There are several lines of code in between OPEN and CLOSE:
    - one that calls for a package.function that simply stores parameter values to a variable
    - another one which fetches the cursor. The group that holds the cursor values is only used by a single function in the package
    *Is it possible for this CLOSE cursor to cause a deadlock? What could have caused this?
    *From what I know, Oracle deals with deadlocks by aborting the deadlocking process while others continue, but this deadlock caused our program to hang. How is this possible? Could the root cause of the deadlock be from our threading program? This is a rare occurrence and happened only twice this year.
    Thanks,
    RafSELECT (without FOR UPDATE) statements are never involved in ORA-00060.
    only DML statements throw ORA-00060 error

  • Patch 9239090 - ORA-04021: timeout occurred while waiting to lock object

    Hello Guys,
    I need help urgently to comlete an upgrade of ebs 12.1.1 to 12.1.3.
    We are upgrading ebs 11i to 12i going live this weekend. We have encountered "ORA-04021: timeout occurred while waiting to lock object" on patch 9239090 with two Workers:
    In adctrl:
    1 Run AutoPatch R120 AFUTLGRS.pls FAILED
    2 Run AutoPatch R120 AFUTLOGS.pls FAILED
    sqlplus -s APPS/***** @/u02/applfinp/apps/apps_st/appl/admin/OFPROD/out/p001invok.sql
    Connected.
    create or replace package wf_bes_cleanup AUTHID CURRENT_USER as
    ERROR at line 1:
    ORA-04021: timeout occurred while waiting to lock object
    I have done everything everything imaginable but cannot get pass these 2 failed workers.
    1) I have checked are there are no locks blocking on any objects:
    select s1.username || '@' || s1.machine
    || ' ( SID=' || s1.sid || ' ) is blocking '
    || s2.username || '@' || s2.machine || ' ( SID=' || s2.sid || ' ) ' AS blocking_status
    from v$lock l1, v$session s1, v$lock l2, v$session s2
    where s1.sid=l1.sid and s2.sid=l2.sid
    and l1.BLOCK=1 and l2.request > 0
    and l1.id1 = l2.id1
    and l2.id2 = l2.id2 ;
    2) I also checked and there is space in the database.
    3) From adctrl, I have tried restarting the jobs one by one but the worker 1 hangs at and eventually fails on several (12) attempts.
    4) The solution on Doc ID 1291064.1 is not the problem:
    SQL> select SUPPLEMENTAL_LOG_DATA_MIN, SUPPLEMENTAL_LOG_DATA_PK, SUPPLEMENTAL_LOG_DATA_UI, FORCE_LOGGING
    from v$database;
    SUPPLEME SUP SUP FOR
    NO NO NO NO
    5) Manual execution still gave ORA-04021:
    sqlplus -s APPS/apps @/u02/applfinp/apps/apps_st/appl/admin/OFPROD/out/p001invok.sql
    sqlplus -s APPS/apps @/u02/applfinp/apps/apps_st/appl/admin/OFPROD/out/p002invok.sql
    6) The alert log has no related errors
    7) I Finally, after over 6 hours of waiting, I could only get the patch to continue after by using adctrl option 8 to skip these two workers.
    After proceeding, I have yet hit two more errors and now stuck:
    I have hit another error with the same patch:
    create or replace package body FND_LOG as
    /* $Header: AFUTLOGB.pls 120 ...
    AD Worker error:
    ORA-04021: timeout occurred while waiting to lock object
    Unable to process file in PACKAGE mode.
    Not converting file for Invoker's Rights because it appears to be a package body creation script (based on the filename).
    File is: /u02/applfinp/apps/apps_st/appl/fnd/12.0.0/patch/115/sql/AFUTLOGB.pls
    AD Worker warning:
    Product Data File
       /u02/applfinp/apps/apps_st/appl/admin/xniprod.txt
       does not exist for product "xni".
      This product is registered in the database but the above file does not exist in APPL_TOP.  The product will be ignored without error
    AD Worker error:
    The following ORACLE error:
    ORA-04063: package body "APPS.FND_LOG" has errors
    ORA-06508: PL/SQL: could not find program unit being called: "APPS.FND_LOG"
    ORA-06512: at "APPS.FND_FUNCTION", line 834
    ORA-06512: at "APPS.FND_MENU_ENTRIES_C_DELTRG", line 4
    ORA-04088: error during execution of trigger 'APPS.FND_MENU_ENTRIES_C_DELTRG'
    Can I stop and restart this patch 9239090?

    Hello,
    I later executed the failed jobs or scripts manually (successfully) for the patch to continue
    sqlplus -s APPS/apps @/u02/applfinp/apps/apps_st/appl/admin/OFPROD/out/p001invok.sql
    sqlplus -s APPS/apps @/u02/applfinp/apps/apps_st/appl/admin/OFPROD/out/p002invok.sql
    The patch ended with the following :
    The following Oracle Reports objects did not generate successfully:
    ap reports/US APXARATE.rdf
    ar reports/US ARXCTA.rdf
    fa reports/US FASRSVED.rdf
    ont reports/US OEXOEORD.rdf
    pa reports/US PAXACMPT.rdf
    pa reports/US PAXALRUN.rdf
    pa reports/US PAXACRPT.rdf
    pa reports/US PAXCPGAL.rdf
    pa reports/US PAXPCRFD.rdf
    The patch execution ended but the patch number is not record in apps.ad_bugs table:
    select TO_CHAR(CREATION_DATE,'dd-Mon-yyyy, hh24:mm:ss'), BUG_NUMBER from apps.ad_bugs where bug_number in ('9239090');
    no rows selected
    JFI
    Patches located in ad_applied_patches to which there is no a corresponding record in ad_bugs:
    SQL> SELECT a.patch_name, TO_CHAR(max(a.last_update_date),'dd-Mon-yyyy, hh24:mm:ss')
    2 FROM applsys.ad_applied_patches a
    3 WHERE NOT EXISTS (SELECT '1'
    4 FROM ad_bugs b
    5 WHERE b.bug_number = a.patch_name)
    6 group by a.patch_name;
    PATCH_NAME TO_CHAR(MAX(A.LAST_UP
    9239090 26-Oct-2013, 00:10:27
    AutoConfig 25-Oct-2013, 17:10:51
    merger9179588 25-Oct-2013, 11:10:30
    merger_post_5903765 27-Apr-2013, 23:04:45
    mergeu6678700 25-Oct-2013, 16:10:09
    What could have happened that this was not recorded in ad_bugs?
    How to I get this recorded in the ad_bugs table?
    Thanks
    Mathias

  • DBMS_XMLSCHEMA.CopyEvolve produces ORA-30945: Could not create mapping tabl

    Hi,
    I am trying to update a XML Schema concerning the documents relaties.xsd (the old one) and relaties_v2.xsd (the new one containing only a minor change).
    The document relaties.xsd looks like this:
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xdb="http://xmlns.oracle.com/xdb"
    elementFormDefault="unqualified"
    attributeFormDefault="unqualified"
    version="1.0">
         <xsd:element name="Relatie" xdb:defaultTable="">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element name="Voornaam" type="xsd:string"/>
                        <xsd:element name="Achternaam" type="xsd:string"/>
                        <xsd:element name="Tussenvoegsel" type="xsd:string"/>
                        <xsd:element name="Geboortedatum" type="xsd:date"/>
                        <xsd:element name="Geslacht">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:enumeration value="M"/>
    <xsd:enumeration value="V"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
                        <xsd:element name="Sofinummer">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:pattern value="\d{9}"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
                        <xsd:element name="Straatnaam" type="xsd:string"/>
                        <xsd:element name="Huisnummer" type="xsd:string"/>
                        <xsd:element name="Woonplaats" type="xsd:string"/>
                        <!--xsd:element name="Postcode" type="xsd:string"/-->
                        <xsd:element name="Postcode">
    <xsd:simpleType>
    <xsd:restriction base="xsd:string">
    <xsd:pattern value="\d{4} [A-Z]{2}"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
                        <xsd:element name="Zrn">
    <xsd:simpleType>
    <xsd:restriction base="xsd:integer">
    <xsd:minInclusive value="1000000"/>
    <xsd:maxInclusive value="99999999999999"/>
    </xsd:restriction>
    </xsd:simpleType>
    </xsd:element>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
    </xsd:schema>
    Here are the steps I took.
    DECLARE
    res BOOLEAN;
    BEGIN
    res := DBMS_XDB.createResource('/xsd/relaties.xsd',
    bfilename('XSDDIR', 'relaties.xsd')
    END;
    DECLARE
    res BOOLEAN;
    BEGIN
    res := DBMS_XDB.createResource('/xsd/relaties_v2.xsd',
    bfilename('XSDDIR', 'relaties_v2.xsd')
    END;
    BEGIN
    DBMS_XMLSCHEMA.registerSchema(
    'http://localhost:8080/xsd/relaties.xsd',
    XDBURIType('/xsd/relaties.xsd').getClob(),
    TRUE,
    FALSE,
    FALSE,
    TRUE);
    END;
    CREATE
    TABLE relatie_documenten OF XMLTYPE
    XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
    ELEMENT "Relatie"
    CREATE OR REPLACE
    TRIGGER upo_rdt_ai
    AFTER INSERT ON relatie_documenten
    FOR EACH ROW
    DECLARE
    doc XMLType;
    BEGIN
    doc := :new.SYS_NC_ROWINFO$;
    XMLType.schemaValidate(doc);
    END;
    Then I inserted some xml documents into the table relatie_documenten. The XSD worked fine.
    Then I executed the following statement:
    BEGIN
    DBMS_XMLSCHEMA.copyEvolve
    ( schemaURLs => xdb$string_list_t('http://localhost:8080/xsd/relaties.xsd')
    , newSchemas => XMLSequenceType(XDBURIType('/xsd/relaties_v2.xsd').getXML())
    , preserveOldDocs => TRUE
    , mapTabName => 'RELATIE_DOCUMENTEN_TEMP'
    , generateTables => FALSE
    END;
    This resulted in:
    ERROR at line 1:
    ORA-30945: Could not create mapping table 'RELATIE_DOCUMENTEN_TEMP'
    ORA-00600: internal error code, arguments: [kqludp2], [0x66AB407C], [0], [],
    ORA-06512: at "XDB.DBMS_XMLSCHEMA_INT", line 113
    ORA-06512: at "XDB.DBMS_XMLSCHEMA", line 210
    ORA-06512: at line 2
    I checked system priviliges as documented in XML DB Developers Guide, Chapter 8 XML Schema Evolution. No other users were connected. The mapping table RELATIE_DOCUMENTEN_TEMP nor any other object named RELATIE_DOCUMENTEN_TEMP did not exist.
    Anyone an idea why I cannot create my mapping table ?
    Gregor

    Which release / platform are you working with
    With 10.2.0.2.1 on Widows I get
    SQL> var schemaURL varchar2(256)
    SQL> var schemaPath varchar2(256)
    SQL> --
    SQL> begin
      2    :schemaURL := 'http://localhost:8080/xsd/relaties.xsd';
      3    :schemaPath := '/public/relaties.xsd';
      4  end;
      5  /
    PL/SQL procedure successfully completed.
    SQL> call dbms_xmlSchema.deleteSchema(:schemaURL,4)
      2  /
    Call completed.
    SQL> declare
      2    res boolean;
      3    xmlSchema xmlType := xmlType(
      4  '<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
      5              xmlns:xdb="http://xmlns.oracle.com/xdb"
      6                 elementFormDefault="unqualified"
      7                 attributeFormDefault="unqualified"
      8                 version="1.0">
      9     <xsd:element name="Relatie" xdb:defaultTable="">
    10             <xsd:complexType>
    11                     <xsd:sequence>
    12                             <xsd:element name="Voornaam" type="xsd:string"/>
    13                             <xsd:element name="Achternaam" type="xsd:string"/>
    14                             <xsd:element name="Tussenvoegsel" type="xsd:string"/>
    15                             <xsd:element name="Geboortedatum" type="xsd:date"/>
    16                             <xsd:element name="Geslacht">
    17                 <xsd:simpleType>
    18                    <xsd:restriction base="xsd:string">
    19                       <xsd:enumeration value="M"/>
    20                       <xsd:enumeration value="V"/>
    21                    </xsd:restriction>
    22                 </xsd:simpleType>
    23              </xsd:element>
    24                     <xsd:element name="Sofinummer">
    25                 <xsd:simpleType>
    26                    <xsd:restriction base="xsd:string">
    27                       <xsd:pattern value="\d{9}"/>
    28                    </xsd:restriction>
    29                 </xsd:simpleType>
    30              </xsd:element>
    31                             <xsd:element name="Straatnaam" type="xsd:string"/>
    32                             <xsd:element name="Huisnummer" type="xsd:string"/>
    33                             <xsd:element name="Woonplaats" type="xsd:string"/>
    34                             <!--xsd:element name="Postcode" type="xsd:string"/-->
    35                             <xsd:element name="Postcode">
    36                 <xsd:simpleType>
    37                    <xsd:restriction base="xsd:string">
    38                       <xsd:pattern value="\d{4} [A-Z]{2}"/>
    39                    </xsd:restriction>
    40                 </xsd:simpleType>
    41              </xsd:element>
    42                             <xsd:element name="Zrn">
    43                 <xsd:simpleType>
    44                    <xsd:restriction base="xsd:integer">
    45                       <xsd:minInclusive value="1000000"/>
    46                       <xsd:maxInclusive value="99999999999999"/>
    47                    </xsd:restriction>
    48                 </xsd:simpleType>
    49              </xsd:element>
    50                     </xsd:sequence>
    51             </xsd:complexType>
    52     </xsd:element>
    53  </xsd:schema>');
    54  begin
    55    if (dbms_xdb.existsResource(:schemaPath)) then
    56      dbms_xdb.deleteResource(:schemaPath);
    57    end if;
    58    res := dbms_xdb.createResource(:schemaPath,xmlSchema);
    59  end;
    60  /
    PL/SQL procedure successfully completed.
    SQL> BEGIN
      2    DBMS_XMLSCHEMA.registerSchema(
      3      :schemaURL,
      4      XDBURIType(:schemaPath).getClob(),
      5      TRUE,
      6      FALSE,
      7      FALSE,
      8      TRUE);
      9  END;
    10  /
    PL/SQL procedure successfully completed.
    SQL> DROP TABLE relatie_documenten FORCE
      2  /
    Table dropped.
    SQL> CREATE TABLE relatie_documenten OF XMLTYPE
      2         XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
      3         ELEMENT "Relatie"
      4  /
    Table created.
    SQL> CREATE OR REPLACE TRIGGER upo_rdt_ai
      2  AFTER INSERT ON relatie_documenten
      3  FOR EACH ROW
      4  DECLARE
      5     doc XMLType;
      6  BEGIN
      7     doc := :new.SYS_NC_ROWINFO$;
      8     XMLType.schemaValidate(doc);
      9  END;
    10  /
    Trigger created.
    SQL> INSERT
      2  INTO   relatie_documenten
      3  VALUES (XMLType
      4           ('<Relatie>
      5                <Voornaam>Johan</Voornaam>
      6                <Achternaam>Hermans</Achternaam>
      7                <Tussenvoegsel/>
      8                <Geboortedatum>1978-01-02</Geboortedatum>
      9                <Geslacht>M</Geslacht>
    10                <Sofinummer>233300417</Sofinummer>
    11                <Straatnaam>Stationstraat</Straatnaam>
    12                <Huisnummer>10</Huisnummer>
    13                <Woonplaats>Weesp</Woonplaats>
    14                <Postcode>1383 AK</Postcode>
    15                <Zrn>1234567</Zrn>
    16             </Relatie>'
    17          ).CreateSchemaBasedXML(:schemaURL))
    18  /
    1 row created.
    SQL> commit
      2  /
    Commit complete.
    SQL> INSERT
      2  INTO   relatie_documenten
      3  VALUES (XMLType
      4           ('<Relatie>
      5                <Voornaam>Johanna</Voornaam>
      6                <Achternaam>Gurts</Achternaam>
      7                <Tussenvoegsel/>
      8                <Geboortedatum>1975-11-12</Geboortedatum>
      9                <Geslacht>V</Geslacht>
    10                <Sofinummer>234109807</Sofinummer>
    11                <Straatnaam>Stationstraat</Straatnaam>
    12                <Huisnummer>10</Huisnummer>
    13                <Woonplaats>Weesp</Woonplaats>
    14                <Postcode>1383 AK</Postcode>
    15                <Zrn>7654321</Zrn>
    16             </Relatie>').CreateSchemaBasedXML(:schemaURL))
    17  /
    1 row created.
    SQL> commit
      2  /
    Commit complete.
    SQL> INSERT
      2  INTO   relatie_documenten
      3  VALUES (XMLType
      4           ('<Relatie>
      5                <Voornaam>Johanna</Voornaam>
      6                <Achternaam>Gurts</Achternaam>
      7                <Tussenvoegsel/>
      8                <Geboortedatum>1975-11-12</Geboortedatum>
      9                <Geslacht>O</Geslacht>
    10                <Sofinummer>234109807</Sofinummer>
    11                <Straatnaam>Stationstraat</Straatnaam>
    12                <Huisnummer>10</Huisnummer>
    13                <Woonplaats>Weesp</Woonplaats>
    14                <Postcode>1383 AK</Postcode>
    15                <Zrn>7654321</Zrn>
    16             </Relatie>').CreateSchemaBasedXML(:schemaURL))
    17  /
    VALUES (XMLType
    ERROR at line 3:
    ORA-31038: Invalid enumeration value: "O"
    ORA-06512: at "SYS.XMLTYPE", line 345
    ORA-06512: at "SCOTT.UPO_RDT_AI", line 5
    ORA-04088: error during execution of trigger 'SCOTT.UPO_RDT_AI'
    SQL> commit
      2  /
    Commit complete.
    SQL> declare
      2    xmlschema xmltype;
      3    res       boolean;
      4  begin
      5    select xdburitype(:schemaPath).getXML()
      6      into xmlSchema
      7      from dual;
      8    dbms_xdb.deleteResource(:schemaPath);
      9    select insertChildXML
    10           (
    11             xmlschema,
    12             '/xsd:schema//xsd:element[@name="Geslacht"]/xsd:simpleType/xsd:restriction',
    13             'xsd:enumeration',
    14             xmltype('<xsd:enumeration xmlns:xsd="http://www.w3.org/2001/XMLSchema" value="O"/>'),
    15             'xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
    16           )
    17    into xmlSchema
    18    from dual;
    19    res := dbms_xdb.createResource(:schemaPath,xmlSchema);
    20  end;
    21  /
    PL/SQL procedure successfully completed.
    SQL> commit
      2  /
    Commit complete.
    SQL> set long 100000 pages 200 lines 140
    SQL> --
    SQL> select xdburitype(:schemaPath).getXML()
      2    from dual
      3  /
    XDBURITYPE(:SCHEMAPATH).GETXML()
    <xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="unqualified" attributeF
    ormDefault="unqualified" version="1.0">
      <xsd:element name="Relatie" xdb:defaultTable="">
        <xsd:complexType>
          <xsd:sequence>
            <xsd:element name="Voornaam" type="xsd:string"/>
            <xsd:element name="Achternaam" type="xsd:string"/>
            <xsd:element name="Tussenvoegsel" type="xsd:string"/>
            <xsd:element name="Geboortedatum" type="xsd:date"/>
            <xsd:element name="Geslacht">
              <xsd:simpleType>
                <xsd:restriction base="xsd:string">
                  <xsd:enumeration value="M"/>
                  <xsd:enumeration value="V"/>
                  <xsd:enumeration xmlns:xsd="http://www.w3.org/2001/XMLSchema" value="O"/>
                </xsd:restriction>
              </xsd:simpleType>
            </xsd:element>
            <xsd:element name="Sofinummer">
              <xsd:simpleType>
                <xsd:restriction base="xsd:string">
                  <xsd:pattern value="\d{9}"/>
                </xsd:restriction>
              </xsd:simpleType>
            </xsd:element>
            <xsd:element name="Straatnaam" type="xsd:string"/>
            <xsd:element name="Huisnummer" type="xsd:string"/>
            <xsd:element name="Woonplaats" type="xsd:string"/>
            <!--xsd:element name="Postcode" type="xsd:string"/-->
            <xsd:element name="Postcode">
              <xsd:simpleType>
                <xsd:restriction base="xsd:string">
                  <xsd:pattern value="\d{4} [A-Z]{2}"/>
                </xsd:restriction>
              </xsd:simpleType>
            </xsd:element>
            <xsd:element name="Zrn">
              <xsd:simpleType>
                <xsd:restriction base="xsd:integer">
                  <xsd:minInclusive value="1000000"/>
                  <xsd:maxInclusive value="99999999999999"/>
                </xsd:restriction>
              </xsd:simpleType>
            </xsd:element>
          </xsd:sequence>
        </xsd:complexType>
      </xsd:element>
    </xsd:schema>
    SQL> DROP TABLE RELATIE_DOCUMENTEN_TEMP
      2  /
    Table dropped.
    SQL> BEGIN
      2    DBMS_XMLSCHEMA.copyEvolve
      3      ( schemaURLs      => xdb$string_list_t(:schemaURL)
      4      , newSchemas      => XMLSequenceType(XDBURIType(:schemaPath).getXML())
      5      , preserveOldDocs => TRUE
      6      , mapTabName      => 'RELATIE_DOCUMENTEN_TEMP'
      7      , generateTables  => FALSE
      8      );
      9  END;
    10  /
    PL/SQL procedure successfully completed.
    SQL> CREATE TABLE relatie_documenten OF XMLTYPE
      2         XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
      3         ELEMENT "Relatie"
      4  /
    Table created.
    SQL> CREATE OR REPLACE TRIGGER upo_rdt_ai
      2  AFTER INSERT ON relatie_documenten
      3  FOR EACH ROW
      4  DECLARE
      5     doc XMLType;
      6  BEGIN
      7     doc := :new.SYS_NC_ROWINFO$;
      8     XMLType.schemaValidate(doc);
      9  END;
    10  /
    Trigger created.
    SQL> declare
      2    tablename varchar2(2000);
      3  begin
      4    select temp_tabname
      5      into tablename
      6      from RELATIE_DOCUMENTEN_TEMP
      7     where table_name = USER || '.' || upper('relatie_documenten');
      8    execute immediate 'insert into relatie_documenten select xmltype(data) from ' || tablename;
      9    commit;
    10  end;
    11  /
    PL/SQL procedure successfully completed.
    SQL> select *
      2    from relatie_documenten
      3  /
    SYS_NC_ROWINFO$
    <Relatie>
      <Voornaam>Johan</Voornaam>
      <Achternaam>Hermans</Achternaam>
      <Tussenvoegsel/>
      <Geboortedatum>1978-01-02</Geboortedatum>
      <Geslacht>M</Geslacht>
      <Sofinummer>233300417</Sofinummer>
      <Straatnaam>Stationstraat</Straatnaam>
      <Huisnummer>10</Huisnummer>
      <Woonplaats>Weesp</Woonplaats>
      <Postcode>1383 AK</Postcode>
      <Zrn>1234567</Zrn>
    </Relatie>
    <Relatie>
      <Voornaam>Johanna</Voornaam>
      <Achternaam>Gurts</Achternaam>
      <Tussenvoegsel/>
      <Geboortedatum>1975-11-12</Geboortedatum>
      <Geslacht>V</Geslacht>
      <Sofinummer>234109807</Sofinummer>
      <Straatnaam>Stationstraat</Straatnaam>
      <Huisnummer>10</Huisnummer>
      <Woonplaats>Weesp</Woonplaats>
      <Postcode>1383 AK</Postcode>
      <Zrn>7654321</Zrn>
    </Relatie>
    SQL> INSERT
      2  INTO   relatie_documenten
      3  VALUES (XMLType
      4           ('<Relatie>
      5                <Voornaam>Johanna</Voornaam>
      6                <Achternaam>Gurts</Achternaam>
      7                <Tussenvoegsel/>
      8                <Geboortedatum>1975-11-12</Geboortedatum>
      9                <Geslacht>O</Geslacht>
    10                <Sofinummer>234109807</Sofinummer>
    11                <Straatnaam>Stationstraat</Straatnaam>
    12                <Huisnummer>10</Huisnummer>
    13                <Woonplaats>Weesp</Woonplaats>
    14                <Postcode>1383 AK</Postcode>
    15                <Zrn>7654321</Zrn>
    16             </Relatie>').CreateSchemaBasedXML(:schemaURL))
    17  /
    1 row created.
    SQL> commit
      2  /
    Commit complete.
    SQL> select *
      2    from relatie_documenten
      3  /
    SYS_NC_ROWINFO$
    <Relatie>
      <Voornaam>Johan</Voornaam>
      <Achternaam>Hermans</Achternaam>
      <Tussenvoegsel/>
      <Geboortedatum>1978-01-02</Geboortedatum>
      <Geslacht>M</Geslacht>
      <Sofinummer>233300417</Sofinummer>
      <Straatnaam>Stationstraat</Straatnaam>
      <Huisnummer>10</Huisnummer>
      <Woonplaats>Weesp</Woonplaats>
      <Postcode>1383 AK</Postcode>
      <Zrn>1234567</Zrn>
    </Relatie>
    <Relatie>
      <Voornaam>Johanna</Voornaam>
      <Achternaam>Gurts</Achternaam>
      <Tussenvoegsel/>
      <Geboortedatum>1975-11-12</Geboortedatum>
      <Geslacht>V</Geslacht>
      <Sofinummer>234109807</Sofinummer>
      <Straatnaam>Stationstraat</Straatnaam>
      <Huisnummer>10</Huisnummer>
      <Woonplaats>Weesp</Woonplaats>
      <Postcode>1383 AK</Postcode>
      <Zrn>7654321</Zrn>
    </Relatie>
    <Relatie>
      <Voornaam>Johanna</Voornaam>
      <Achternaam>Gurts</Achternaam>
      <Tussenvoegsel/>
      <Geboortedatum>1975-11-12</Geboortedatum>
      <Geslacht>O</Geslacht>
      <Sofinummer>234109807</Sofinummer>
      <Straatnaam>Stationstraat</Straatnaam>
      <Huisnummer>10</Huisnummer>
      <Woonplaats>Weesp</Woonplaats>
      <Postcode>1383 AK</Postcode>
      <Zrn>7654321</Zrn>
    </Relatie>
    SQL>Here's the SQL, can you cut'n'paste and run the whole thing as XML_OWNER
    var schemaURL varchar2(256)
    var schemaPath varchar2(256)
    begin
      :schemaURL := 'http://localhost:8080/xsd/relaties.xsd';
      :schemaPath := '/public/relaties.xsd';
    end;
    call dbms_xmlSchema.deleteSchema(:schemaURL,4)
    declare
      res boolean;
      xmlSchema xmlType := xmlType(
    '<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
                xmlns:xdb="http://xmlns.oracle.com/xdb"
                   elementFormDefault="unqualified"
                   attributeFormDefault="unqualified"
                   version="1.0">
         <xsd:element name="Relatie" xdb:defaultTable="">
              <xsd:complexType>
                   <xsd:sequence>
                        <xsd:element name="Voornaam" type="xsd:string"/>
                        <xsd:element name="Achternaam" type="xsd:string"/>
                        <xsd:element name="Tussenvoegsel" type="xsd:string"/>
                        <xsd:element name="Geboortedatum" type="xsd:date"/>
                        <xsd:element name="Geslacht">
                   <xsd:simpleType>
                      <xsd:restriction base="xsd:string">
                         <xsd:enumeration value="M"/>
                         <xsd:enumeration value="V"/>
                      </xsd:restriction>
                   </xsd:simpleType>
                </xsd:element>
                     <xsd:element name="Sofinummer">
                   <xsd:simpleType>
                      <xsd:restriction base="xsd:string">
                         <xsd:pattern value="\d{9}"/>
                      </xsd:restriction>
                   </xsd:simpleType>
                </xsd:element>
                        <xsd:element name="Straatnaam" type="xsd:string"/>
                        <xsd:element name="Huisnummer" type="xsd:string"/>
                        <xsd:element name="Woonplaats" type="xsd:string"/>
                        <!--xsd:element name="Postcode" type="xsd:string"/-->
                        <xsd:element name="Postcode">
                   <xsd:simpleType>
                      <xsd:restriction base="xsd:string">
                         <xsd:pattern value="\d{4} [A-Z]{2}"/>
                      </xsd:restriction>
                   </xsd:simpleType>
                </xsd:element>
                        <xsd:element name="Zrn">
                   <xsd:simpleType>
                      <xsd:restriction base="xsd:integer">
                         <xsd:minInclusive value="1000000"/>
                         <xsd:maxInclusive value="99999999999999"/>
                      </xsd:restriction>
                   </xsd:simpleType>
                </xsd:element>
                   </xsd:sequence>
              </xsd:complexType>
         </xsd:element>
    </xsd:schema>');
    begin
      if (dbms_xdb.existsResource(:schemaPath)) then
        dbms_xdb.deleteResource(:schemaPath);
      end if;
      res := dbms_xdb.createResource(:schemaPath,xmlSchema);
    end;
    BEGIN
      DBMS_XMLSCHEMA.registerSchema(
        :schemaURL,
        XDBURIType(:schemaPath).getClob(),
        TRUE,
        FALSE,
        FALSE,
        TRUE);
    END;
    DROP TABLE relatie_documenten FORCE
    CREATE TABLE relatie_documenten OF XMLTYPE
           XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
           ELEMENT "Relatie"
    CREATE OR REPLACE TRIGGER upo_rdt_ai
    AFTER INSERT ON relatie_documenten
    FOR EACH ROW
    DECLARE
       doc XMLType;
    BEGIN
       doc := :new.SYS_NC_ROWINFO$;
       XMLType.schemaValidate(doc);
    END;
    INSERT
    INTO   relatie_documenten
    VALUES (XMLType
             ('<Relatie>
                  <Voornaam>Johan</Voornaam>
                  <Achternaam>Hermans</Achternaam>
                  <Tussenvoegsel/>
                  <Geboortedatum>1978-01-02</Geboortedatum>
                  <Geslacht>M</Geslacht>
                  <Sofinummer>233300417</Sofinummer>
                  <Straatnaam>Stationstraat</Straatnaam>
                  <Huisnummer>10</Huisnummer>
                  <Woonplaats>Weesp</Woonplaats>
                  <Postcode>1383 AK</Postcode>
                  <Zrn>1234567</Zrn>
               </Relatie>'
            ).CreateSchemaBasedXML(:schemaURL))
    commit
    INSERT
    INTO   relatie_documenten
    VALUES (XMLType
             ('<Relatie>
                  <Voornaam>Johanna</Voornaam>
                  <Achternaam>Gurts</Achternaam>
                  <Tussenvoegsel/>
                  <Geboortedatum>1975-11-12</Geboortedatum>
                  <Geslacht>V</Geslacht>
                  <Sofinummer>234109807</Sofinummer>
                  <Straatnaam>Stationstraat</Straatnaam>
                  <Huisnummer>10</Huisnummer>
                  <Woonplaats>Weesp</Woonplaats>
                  <Postcode>1383 AK</Postcode>
                  <Zrn>7654321</Zrn>
               </Relatie>').CreateSchemaBasedXML(:schemaURL))
    commit
    INSERT
    INTO   relatie_documenten
    VALUES (XMLType
             ('<Relatie>
                  <Voornaam>Johanna</Voornaam>
                  <Achternaam>Gurts</Achternaam>
                  <Tussenvoegsel/>
                  <Geboortedatum>1975-11-12</Geboortedatum>
                  <Geslacht>O</Geslacht>
                  <Sofinummer>234109807</Sofinummer>
                  <Straatnaam>Stationstraat</Straatnaam>
                  <Huisnummer>10</Huisnummer>
                  <Woonplaats>Weesp</Woonplaats>
                  <Postcode>1383 AK</Postcode>
                  <Zrn>7654321</Zrn>
               </Relatie>').CreateSchemaBasedXML(:schemaURL))
    commit
    declare
      xmlschema xmltype;
      res       boolean;
    begin
      select xdburitype(:schemaPath).getXML()
        into xmlSchema
        from dual;
      dbms_xdb.deleteResource(:schemaPath);
      select insertChildXML
               xmlschema,
               '/xsd:schema//xsd:element[@name="Geslacht"]/xsd:simpleType/xsd:restriction',
               'xsd:enumeration',
               xmltype('<xsd:enumeration xmlns:xsd="http://www.w3.org/2001/XMLSchema" value="O"/>'),
               'xmlns:xsd="http://www.w3.org/2001/XMLSchema"'
      into xmlSchema
      from dual;
      res := dbms_xdb.createResource(:schemaPath,xmlSchema);
    end;
    commit
    set long 100000 pages 200 lines 140
    select xdburitype(:schemaPath).getXML()
      from dual
    DROP TABLE RELATIE_DOCUMENTEN_TEMP
    BEGIN
      DBMS_XMLSCHEMA.copyEvolve
        ( schemaURLs      => xdb$string_list_t(:schemaURL)
        , newSchemas      => XMLSequenceType(XDBURIType(:schemaPath).getXML())
        , preserveOldDocs => TRUE
        , mapTabName      => 'RELATIE_DOCUMENTEN_TEMP'
        , generateTables  => FALSE
    END;
    CREATE TABLE relatie_documenten OF XMLTYPE
           XMLSCHEMA "http://localhost:8080/xsd/relaties.xsd"
           ELEMENT "Relatie"
    CREATE OR REPLACE TRIGGER upo_rdt_ai
    AFTER INSERT ON relatie_documenten
    FOR EACH ROW
    DECLARE
       doc XMLType;
    BEGIN
       doc := :new.SYS_NC_ROWINFO$;
       XMLType.schemaValidate(doc);
    END;
    declare
      tablename varchar2(2000);
    begin
      select temp_tabname
        into tablename
        from RELATIE_DOCUMENTEN_TEMP
       where table_name = USER || '.' || upper('relatie_documenten');
      execute immediate 'insert into relatie_documenten select xmltype(data) from ' || tablename;
      commit;
    end;
    select *
      from relatie_documenten
    INSERT
    INTO   relatie_documenten
    VALUES (XMLType
             ('<Relatie>
                  <Voornaam>Johanna</Voornaam>
                  <Achternaam>Gurts</Achternaam>
                  <Tussenvoegsel/>
                  <Geboortedatum>1975-11-12</Geboortedatum>
                  <Geslacht>O</Geslacht>
                  <Sofinummer>234109807</Sofinummer>
                  <Straatnaam>Stationstraat</Straatnaam>
                  <Huisnummer>10</Huisnummer>
                  <Woonplaats>Weesp</Woonplaats>
                  <Postcode>1383 AK</Postcode>
                  <Zrn>7654321</Zrn>
               </Relatie>').CreateSchemaBasedXML(:schemaURL))
    commit
    select *
      from relatie_documenten
    /

  • Backup Error :ORA-00081

    Dear All,
    Greetings!
    Currently I m facing the problem in getting the backup executed successfully.We are having the HP-Ux as O.S.
    I had scheduled the backup on the local disk and also verified the permissions of ora<adm> and sid<adm> .Everything is correct.Even the backup logs shows that the db backup is completed .But when checked in the log it shows the msg as
    "SQL> Connected to an idle instance.
    SQL>
    SQL> ORA-00081: address range [0x600000000009C450, 0x600000000009C454) is not re
    adable
    version], [], [], [], [], [], []
    SQL> Disconnected
    BR0280I BRBACKUP time stamp: 2008-10-08 00.40.35
    BR0279E Return code from '/oracle/BRD/102_64/bin/sqlplus /nolog < /oracle/BRD/sa
    pbackup/.bdyzdwvz.spi': 0
    BR0302E SQLPLUS call for database instance BRD failed
    BR0306E Start and open of database instance BRD failed
    BR0115I Compression rate for all files 3.3134:1
    BR0280I BRBACKUP time stamp: 2008-10-08 00.40.36
    BR0304I Starting and opening database instance BRD ...
    BR0280I BRBACKUP time stamp: 2008-10-08 00.51.54
    BR0305I Start and open of database instance BRD successful
    BR0056I End of database backup: bdyzdwvz.afd 2008-10-08 00.40.35
    BR0280I BRBACKUP time stamp: 2008-10-08 00.52.51
    BR0054I BRBACKUP terminated with errors"
    In all I want to say is dbbackup successfully completed when it was starting db instance it failed to start properly.As there is no problem in login in to system also.
    Please take this issue as high priority
    Kindly suggest the solution for the same.
    Thanks in advance.
    Regards,
    Amit

    Dear Prahsant,
    Sorry for late reply.
    I had not applied any patches.I had not performed any activity.Please find the log file below.
    BR0051I BRBACKUP 7.00 (34)
    BR0055I Start of database backup: bdyzdwvz.afd 2008-10-07 20.52.03
    BR0484I BRBACKUP log file: /oracle/BRD/sapbackup/bdyzdwvz.afd
    BR0477I Oracle pfile /oracle/BRD/102_64/dbs/initBRD.ora created from spfile /ora
    cle/BRD/102_64/dbs/spfileBRD.ora
    BR0101I Parameters
    Name                           Value
    oracle_sid                     BRD
    oracle_home                    /oracle/BRD/102_64
    oracle_profile                 /oracle/BRD/102_64/dbs/initBRD.ora
    sapdata_home                   /oracle/BRD
    sap_profile                    /oracle/BRD/102_64/dbs/initBRD.sap
    backup_mode                    ALL
    backup_type                    offline_force
    backup_dev_type                disk
    backup_root_dir                /sapcd/Backup1
    compress                       yes
    compress_cmd                   compress -c $ > $
    exec_parallel                  0
    system_info                    orabrd/orabrd bslr3dev HP-UX B.11.31 U ia64
    oracle_info                    BRD 10.2.0.2.0 8192 4106 32529907 bslr3dev UTF8 U
    TF8
    sap_info                       700 SAPSR3 0002LK0003BRD0011F14282267140013NetWea
    ver_ORA
    make_info                      hpia64 OCI_102 May 31 2008
    command_line                   /usr/sap/BRD/SYS/exe/run/brbackup -p initBRD.sap
    -d disk -t offline_force -m all -k yes -e 0 -l E -U
    BR0116I ARCHIVE LOG LIST before backup for database instance BRD
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /oracle/BRD/oraarch/BRDarch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     4103
    Next log sequence to archive   4106
    Current log sequence           4106             SCN: 32529907
    Database block size            8192             Thread: 1
    Current system change number   32542362         ResetId: 661884644
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File
                   Size   Id.     Device  Link    Type       MaxSize     IncrSize  B
    lkSize
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3_1/sr3.data1
             2097160192    4  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3_2/sr3.data2
             2097160192    5  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3_3/sr3.data3
             2097160192    6  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    BR0051I BRBACKUP 7.00 (34)
    BR0055I Start of database backup: bdyzdwvz.afd 2008-10-07 20.52.03
    BR0484I BRBACKUP log file: /oracle/BRD/sapbackup/bdyzdwvz.afd
    BR0477I Oracle pfile /oracle/BRD/102_64/dbs/initBRD.ora created from spfile /ora
    cle/BRD/102_64/dbs/spfileBRD.ora
    BR0101I Parameters
    Name                           Value
    oracle_sid                     BRD
    oracle_home                    /oracle/BRD/102_64
    oracle_profile                 /oracle/BRD/102_64/dbs/initBRD.ora
    sapdata_home                   /oracle/BRD
    sap_profile                    /oracle/BRD/102_64/dbs/initBRD.sap
    backup_mode                    ALL
    backup_type                    offline_force
    backup_dev_type                disk
    backup_root_dir                /sapcd/Backup1
    compress                       yes
    compress_cmd                   compress -c $ > $
    exec_parallel                  0
    system_info                    orabrd/orabrd bslr3dev HP-UX B.11.31 U ia64
    oracle_info                    BRD 10.2.0.2.0 8192 4106 32529907 bslr3dev UTF8 U
    TF8
    sap_info                       700 SAPSR3 0002LK0003BRD0011F14282267140013NetWea
    ver_ORA
    make_info                      hpia64 OCI_102 May 31 2008
    command_line                   /usr/sap/BRD/SYS/exe/run/brbackup -p initBRD.sap
    -d disk -t offline_force -m all -k yes -e 0 -l E -U
    BR0116I ARCHIVE LOG LIST before backup for database instance BRD
    Parameter                      Value
    Database log mode              Archive Mode
    Automatic archival             Enabled
    Archive destination            /oracle/BRD/oraarch/BRDarch
    Archive format                 %t_%s_%r.dbf
    Oldest online log sequence     4103
    Next log sequence to archive   4106
    Current log sequence           4106             SCN: 32529907
    Database block size            8192             Thread: 1
    Current system change number   32542362         ResetId: 661884644
    BR0118I Tablespaces and data files
    Tablespace     TS-Status  F-Status  File
                   Size   Id.     Device  Link    Type       MaxSize     IncrSize  B
    lkSize
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3_1/sr3.data1
             2097160192    4  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3_2/sr3.data2
             2097160192    5  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3_3/sr3.data3
             2097160192    6  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3_4/sr3.data4
             2097160192    7  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3_5/sr3.data5
             2097160192    8  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3_10/sr3.data10
             2097160192   13  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3_6/sr3.data6
             2097160192    9  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3_7/sr3.data7
             2097160192   10  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3_8/sr3.data8
             2097160192   11  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3_9/sr3.data9
             2097160192   12  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3_11/sr3.data11
             2097160192   14  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3_12/sr3.data12
             2097160192   15  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3_13/sr3.data13
             2097160192   16  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3_14/sr3.data14
             2097160192   17  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3_15/sr3.data15
             2097160192   18  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3_16/sr3.data16
             2097160192   19  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3_17/sr3.data17
             2097160192   20  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3_18/sr3.data18
             2097160192   21  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3_19/sr3.data19
             2097160192   22  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3        ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3_20/sr3.data20
             2097160192   23  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3700_1/sr3700.data1
             4739571712   24  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3700_2/sr3700.data2
             4886372352   25  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3700_3/sr3700.data3
             4907343872   26  1073741841  NOLINK  FILE   10485760000     20971520
             4907343872   26  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3700_4/sr3700.data4
             5033172992   27  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3700_5/sr3700.data5
             4928315392   28  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3700_6/sr3700.data6
             5200945152   29  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3700_7/sr3700.data7
             5347745792   30  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata2/sr3700_8/sr3700.data8
             5200945152   31  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3700_10/sr3700.data10
             4844429312   33  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3700_11/sr3700.data11
             4802486272   34  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3700_12/sr3700.data12
             4592771072   35  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata3/sr3700_9/sr3700.data9
             5075116032   32  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3700_13/sr3700.data13
             4613742592   36  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3700_14/sr3700.data14
             4886372352   37  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3700_15/sr3700.data15
             4802486272   38  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE+   /oracle/BRD/sapdata4/sr3700_16/sr3700.data16
             4802486272   39  1073741844  NOLINK  FILE   10485760000     20971520
      8192
    PSAPSR3700     ONLINE*    ONLINE    /oracle/BRD/sapdata4/sr3700_17/sr3700.data17
             4802486272   41  1073741844  NOLINK  FILE             0            0
      8192
    PSAPSR3USR     ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sr3usr_1/sr3usr.data1
               20979712   40  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    PSAPTEMP       ONLINE#    ONLINE+   /oracle/BRD/sapdata2/temp_1/temp.data1
             2097160192   -1  1073741842  NOLINK  FILE   10485760000     20971520
      8192
    PSAPUNDO       ONLINE-    ONLINE+   /oracle/BRD/sapdata3/undo_1/undo.data1
             9227476992    2  1073741843  NOLINK  FILE   10485760000     20971520
      8192
    SYSAUX         ONLINE*    ONLINE+   /oracle/BRD/sapdata1/sysaux_1/sysaux.data1
              293609472    3  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    SYSTEM         ONLINE*    SYSTEM+   /oracle/BRD/sapdata1/system_1/system.data1
              901783552    1  1073741841  NOLINK  FILE   10485760000     20971520
      8192
    BR0119I Redo log files
    File                                                Size  Group     Device  Stat
    us    Link    Type
    /oracle/BRD/origlogA/log_g11m1.dbf              52429824    1   1073741845  INUS
    E     NOLINK  FILE
    /oracle/BRD/mirrlogA/log_g11m2.dbf              52429824    1   1073741847  INUS
    E     NOLINK  FILE
    /oracle/BRD/origlogB/log_g12m1.dbf              52429824    2   1073741846  INUS
    E     NOLINK  FILE
    /oracle/BRD/mirrlogB/log_g12m2.dbf              52429824    2   1073741848  INUS
    E     NOLINK  FILE
    /oracle/BRD/origlogA/log_g13m1.dbf              52429824    3   1073741845  INUS
    E     NOLINK  FILE
    /oracle/BRD/mirrlogA/log_g13m2.dbf              52429824    3   1073741847  INUS
    E     NOLINK  FILE
    /oracle/BRD/origlogB/log_g14m1.dbf              52429824    4   1073741846  INUS
    E     NOLINK  FILE
    /oracle/BRD/mirrlogB/log_g14m2.dbf              52429824    4   1073741848  INUS
    E     NOLINK  FILE
    BR0120I Control files
    File                                                Size   Id.      Device  Link
        Type
    /oracle/BRD/origlogA/cntrl/cntlrBRD.dbf         15024128    0   1073741845  NOLI
    NK  FILE
    /oracle/BRD/origlogB/cntrl/cntrlBRD.dbf         15024128    0   1073741846  NOLI
    NK  FILE
    /oracle/BRD/sapdata1/cntrl/cntrlBRD.dbf         15024128    0   1073741841  NOLI
    NK  FILE
    BR0280I BRBACKUP time stamp: 2008-10-07 20.52.05
    BR0057I Backup of database: BRD
    BR0058I BRBACKUP action ID: bdyzdwvz
    BR0059I BRBACKUP function ID: afd
    BR0110I Backup mode: ALL
    BR0077I Database files for backup:
    /oracle/BRD/origlogA/log_g11m1.dbf
    /oracle/BRD/origlogB/log_g12m1.dbf
    /oracle/BRD/origlogA/log_g13m1.dbf
    /oracle/BRD/origlogB/log_g14m1.dbf
    /oracle/BRD/origlogA/cntrl/cntlrBRD.dbf
    BR0061I 47 files found for backup, total size 131774.660 MB
    BR0143I Backup type: offline_force
    BR0111I Files will be compressed
    BR0130I Backup device type: disk
    BR0106I Files will be saved on disk in directory: /sapcd/Backup1/bdyzdwvz
    BR0064I Database instance BRD will be shut down now
    BR0280I BRBACKUP time stamp: 2008-10-07 20.52.05
    BR0256I Enter 'c[ont]' to continue, 's[top]' to cancel BRBACKUP:
    BR0280I BRBACKUP time stamp: 2008-10-07 20.52.08
    BR0257I Your reply: 'c'
    BR0259I Program execution will be continued...
    BR0370I Directory /sapcd/Backup1/bdyzdwvz created
    BR0370I Directory /sapcd/Backup1/bdyzdwvz created
    BR0370I Directory /sapcd/Backup1/BRD created
    BR0202I Saving init_ora
    BR0203I to /sapcd/Backup1/BRD ...
    BR0202I Saving /oracle/BRD/102_64/dbs/initBRD.sap
    BR0203I to /sapcd/Backup1/BRD ...
    BR0280I BRBACKUP time stamp: 2008-10-07 20.52.08
    BR0198I Profiles saved successfully
    BR0280I BRBACKUP time stamp: 2008-10-07 20.52.08
    BR0307I Shutting down database instance BRD ...
    BR0280I BRBACKUP time stamp: 2008-10-07 20.52.44
    BR0308I Shutdown of database instance BRD successful
    BR0201I Compressing /oracle/BRD/sapdata1/sr3_1/sr3.data1
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data1.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3_1/sr3.data1
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data1.Z  #1/1  6.0220:1  348247267
    BR0280I BRBACKUP time stamp: 2008-10-07 20.55.50
    BR0063I 1 of 47 files processed - 2000.008 MB of 131774.660 MB done
    BR0204I Percentage done: 1.52%, estimated end time: 0:55
    BR0001I *_________________________________________________
    BR0201I Compressing /oracle/BRD/sapdata1/sr3_2/sr3.data2
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data2.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3_2/sr3.data2
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data2.Z  #1/2  6.7318:1  311532005
    BR0280I BRBACKUP time stamp: 2008-10-07 20.58.40
    BR0063I 2 of 47 files processed - 4000.016 MB of 131774.660 MB done
    BR0204I Percentage done: 3.04%, estimated end time: 0:27
    BR0001I **________________________________________________
    BR0201I Compressing /oracle/BRD/sapdata1/sr3_3/sr3.data3
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data3.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3_3/sr3.data3
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data3.Z  #1/3  6.2634:1  334829335
    BR0280I BRBACKUP time stamp: 2008-10-07 21.01.27
    BR0063I 3 of 47 files processed - 6000.023 MB of 131774.660 MB done
    BR0204I Percentage done: 4.55%, estimated end time: 0:16
    BR0001I **________________________________________________
    BR0201I Compressing /oracle/BRD/sapdata1/sr3_4/sr3.data4
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data4.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3_4/sr3.data4
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data4.Z  #1/4  4.6540:1  450616257
    BR0280I BRBACKUP time stamp: 2008-10-07 21.04.35
    BR0063I 4 of 47 files processed - 8000.031 MB of 131774.660 MB done
    BR0204I Percentage done: 6.07%, estimated end time: 0:17
    BR0204I Percentage done: 6.07%, estimated end time: 0:17
    BR0001I ***_______________________________________________
    BR0201I Compressing /oracle/BRD/sapdata1/sr3_5/sr3.data5
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data5.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3_5/sr3.data5
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data5.Z  #1/5  4.6597:1  450067403
    BR0280I BRBACKUP time stamp: 2008-10-07 21.07.33
    BR0063I 5 of 47 files processed - 10000.039 MB of 131774.660 MB done
    BR0204I Percentage done: 7.59%, estimated end time: 0:15
    BR0001I ****______________________________________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3_10/sr3.data10
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data10.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3_10/sr3.data10
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data10.Z  #1/6  7.6802:1  273060466
    BR0280I BRBACKUP time stamp: 2008-10-07 21.09.45
    BR0063I 6 of 47 files processed - 12000.047 MB of 131774.660 MB done
    BR0204I Percentage done: 9.11%, estimated end time: 0:05
    BR0001I *****_____________________________________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3_6/sr3.data6
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data6.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3_6/sr3.data6
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data6.Z  #1/7  5.5245:1  379607814
    BR0280I BRBACKUP time stamp: 2008-10-07 21.12.14
    BR0063I 7 of 47 files processed - 14000.055 MB of 131774.660 MB done
    BR0204I Percentage done: 10.62%, estimated end time: 0:01
    BR0001I *****_____________________________________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3_7/sr3.data7
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data7.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3_7/sr3.data7
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data7.Z  #1/8  6.0335:1  347586761
    BR0280I BRBACKUP time stamp: 2008-10-07 21.14.42
    BR0063I 8 of 47 files processed - 16000.062 MB of 131774.660 MB done
    BR0204I Percentage done: 12.14%, estimated end time: 23:57
    BR0001I ******____________________________________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3_8/sr3.data8
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data8.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3_8/sr3.data8
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data8.Z  #1/9  6.7059:1  312733790
    BR0280I BRBACKUP time stamp: 2008-10-07 21.17.02
    BR0063I 9 of 47 files processed - 18000.070 MB of 131774.660 MB done
    BR0204I Percentage done: 13.66%, estimated end time: 23:54
    BR0001I *******___________________________________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3_9/sr3.data9
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data9.Z ...
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data9.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3_9/sr3.data9
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data9.Z  #1/10  7.3126:1  286785669
    BR0280I BRBACKUP time stamp: 2008-10-07 21.19.13
    BR0063I 10 of 47 files processed - 20000.078 MB of 131774.660 MB done
    BR0204I Percentage done: 15.18%, estimated end time: 23:50
    BR0001I ********__________________________________________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3_11/sr3.data11
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data11.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3_11/sr3.data11
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data11.Z  #1/11  7.9741:1  262995669
    BR0280I BRBACKUP time stamp: 2008-10-07 21.21.21
    BR0063I 11 of 47 files processed - 22000.086 MB of 131774.660 MB done
    BR0204I Percentage done: 16.70%, estimated end time: 23:47
    BR0001I ********__________________________________________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3_12/sr3.data12
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data12.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3_12/sr3.data12
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data12.Z  #1/12  8.7416:1  239906417
    BR0280I BRBACKUP time stamp: 2008-10-07 21.23.24
    BR0063I 12 of 47 files processed - 24000.094 MB of 131774.660 MB done
    BR0204I Percentage done: 18.21%, estimated end time: 23:43
    BR0001I *********_________________________________________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3_13/sr3.data13
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data13.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3_13/sr3.data13
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data13.Z  #1/13  9.1736:1  228607709
    BR0280I BRBACKUP time stamp: 2008-10-07 21.25.20
    BR0063I 13 of 47 files processed - 26000.102 MB of 131774.660 MB done
    BR0204I Percentage done: 19.73%, estimated end time: 23:40
    BR0001I **********________________________________________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3_14/sr3.data14
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data14.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3_14/sr3.data14
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data14.Z  #1/14  8.3455:1  251291947
    BR0280I BRBACKUP time stamp: 2008-10-07 21.27.15
    BR0063I 14 of 47 files processed - 28000.109 MB of 131774.660 MB done
    BR0204I Percentage done: 21.25%, estimated end time: 23:37
    BR0001I ***********_______________________________________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3_15/sr3.data15
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data15.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3_15/sr3.data15
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data15.Z  #1/15  8.8340:1  237395747
    BR0280I BRBACKUP time stamp: 2008-10-07 21.29.24
    BR0063I 15 of 47 files processed - 30000.117 MB of 131774.660 MB done
    BR0204I Percentage done: 22.77%, estimated end time: 23:35
    BR0001I ***********_______________________________________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3_16/sr3.data16
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data16.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3_16/sr3.data16
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data16.Z  #1/16  6.0104:1  348922923
    BR0280I BRBACKUP time stamp: 2008-10-07 21.31.49
    BR0063I 16 of 47 files processed - 32000.125 MB of 131774.660 MB done
    BR0204I Percentage done: 24.28%, estimated end time: 23:35
    BR0001I ************______________________________________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3_17/sr3.data17
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data17.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3_17/sr3.data17
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data17.Z  #1/17  7.6326:1  274761761
    BR0280I BRBACKUP time stamp: 2008-10-07 21.34.06
    BR0063I 17 of 47 files processed - 34000.133 MB of 131774.660 MB done
    BR0204I Percentage done: 25.80%, estimated end time: 23:34
    BR0001I *************_____________________________________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3_18/sr3.data18
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data18.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3_18/sr3.data18
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data18.Z  #1/18  7.3986:1  283454327
    BR0280I BRBACKUP time stamp: 2008-10-07 21.36.18
    BR0063I 18 of 47 files processed - 36000.141 MB of 131774.660 MB done
    BR0204I Percentage done: 27.32%, estimated end time: 23:33
    BR0001I **************____________________________________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3_19/sr3.data19
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data19.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3_19/sr3.data19
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data19.Z  #1/19  7.8123:1  268444850
    BR0280I BRBACKUP time stamp: 2008-10-07 21.38.24
    BR0063I 19 of 47 files processed - 38000.148 MB of 131774.660 MB done
    BR0204I Percentage done: 28.84%, estimated end time: 23:32
    BR0001I **************____________________________________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3_20/sr3.data20
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3.data20.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3_20/sr3.data20
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3.data20.Z  #1/20  6.2000:1  338250657
    BR0280I BRBACKUP time stamp: 2008-10-07 21.40.53
    BR0063I 20 of 47 files processed - 40000.156 MB of 131774.660 MB done
    BR0204I Percentage done: 30.35%, estimated end time: 23:32
    BR0001I ***************___________________________________
    BR0001I ***************___________________________________
    BR0201I Compressing /oracle/BRD/sapdata1/sr3700_1/sr3700.data1
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data1.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3700_1/sr3700.data1
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data1.Z  #1/21  2.4997:1  1896035259
    BR0280I BRBACKUP time stamp: 2008-10-07 21.49.06
    BR0063I 21 of 47 files processed - 44520.164 MB of 131774.660 MB done
    BR0204I Percentage done: 33.79%, estimated end time: 23:40
    BR0001I *****************_________________________________
    BR0201I Compressing /oracle/BRD/sapdata1/sr3700_2/sr3700.data2
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data2.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3700_2/sr3700.data2
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data2.Z  #1/22  2.4296:1  2011190557
    BR0280I BRBACKUP time stamp: 2008-10-07 21.57.58
    BR0063I 22 of 47 files processed - 49180.172 MB of 131774.660 MB done
    BR0204I Percentage done: 37.32%, estimated end time: 23:48
    BR0001I *******************_______________________________
    BR0201I Compressing /oracle/BRD/sapdata1/sr3700_3/sr3700.data3
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data3.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3700_3/sr3700.data3
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data3.Z  #1/23  2.5030:1  1960609057
    BR0280I BRBACKUP time stamp: 2008-10-07 22.06.36
    BR0063I 23 of 47 files processed - 53860.180 MB of 131774.660 MB done
    BR0204I Percentage done: 40.87%, estimated end time: 23:54
    BR0001I ********************______________________________
    BR0201I Compressing /oracle/BRD/sapdata1/sr3700_4/sr3700.data4
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data4.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3700_4/sr3700.data4
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data4.Z  #1/24  2.6125:1  1926551980
    BR0280I BRBACKUP time stamp: 2008-10-07 22.14.49
    BR0063I 24 of 47 files processed - 58660.188 MB of 131774.660 MB done
    BR0204I Percentage done: 44.52%, estimated end time: 23:57
    BR0001I **********************____________________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3700_5/sr3700.data5
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data5.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3700_5/sr3700.data5
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data5.Z  #1/25  2.5903:1  1902638835
    BR0280I BRBACKUP time stamp: 2008-10-07 22.23.00
    BR0063I 25 of 47 files processed - 63360.195 MB of 131774.660 MB done
    BR0204I Percentage done: 48.08%, estimated end time: 0:01
    BR0001I ************************__________________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3700_6/sr3700.data6
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data6.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3700_6/sr3700.data6
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data6.Z  #1/26  2.6146:1  1989170074
    BR0280I BRBACKUP time stamp: 2008-10-07 22.30.59
    BR0063I 26 of 47 files processed - 68320.203 MB of 131774.660 MB done
    BR0204I Percentage done: 51.85%, estimated end time: 0:02
    BR0001I **************************________________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3700_7/sr3700.data7
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data7.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3700_7/sr3700.data7
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data7.Z  #1/27  2.3768:1  2249992185
    BR0280I BRBACKUP time stamp: 2008-10-07 22.40.04
    BR0063I 27 of 47 files processed - 73420.211 MB of 131774.660 MB done
    BR0204I Percentage done: 55.72%, estimated end time: 0:05
    BR0001I ****************************______________________
    BR0201I Compressing /oracle/BRD/sapdata2/sr3700_8/sr3700.data8
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data8.Z ...
    #FILE..... /oracle/BRD/sapdata2/sr3700_8/sr3700.data8
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data8.Z  #1/28  2.3992:1  2167807819
    BR0280I BRBACKUP time stamp: 2008-10-07 22.49.09
    BR0063I 28 of 47 files processed - 78380.219 MB of 131774.660 MB done
    BR0204I Percentage done: 59.48%, estimated end time: 0:08
    BR0001I ******************************____________________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3700_10/sr3700.data10
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data10.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3700_10/sr3700.data10
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data10.Z  #1/29  2.6898:1  1801055019
    BR0280I BRBACKUP time stamp: 2008-10-07 22.56.50
    BR0063I 29 of 47 files processed - 83000.227 MB of 131774.660 MB done
    BR0204I Percentage done: 62.99%, estimated end time: 0:10
    BR0001I *******************************___________________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3700_11/sr3700.data11
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data11.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3700_11/sr3700.data11
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data11.Z  #1/30  2.5343:1  1894971379
    BR0280I BRBACKUP time stamp: 2008-10-07 23.04.55
    BR0063I 30 of 47 files processed - 87580.234 MB of 131774.660 MB done
    BR0204I Percentage done: 66.46%, estimated end time: 0:11
    BR0001I *********************************_________________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3700_12/sr3700.data12
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data12.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3700_12/sr3700.data12
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data12.Z  #1/31  2.7819:1  1650930728
    BR0280I BRBACKUP time stamp: 2008-10-07 23.12.26
    BR0280I BRBACKUP time stamp: 2008-10-07 23.12.26
    BR0063I 31 of 47 files processed - 91960.242 MB of 131774.660 MB done
    BR0204I Percentage done: 69.79%, estimated end time: 0:13
    BR0001I ***********************************_______________
    BR0201I Compressing /oracle/BRD/sapdata3/sr3700_9/sr3700.data9
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data9.Z ...
    #FILE..... /oracle/BRD/sapdata3/sr3700_9/sr3700.data9
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data9.Z  #1/32  2.3898:1  2123673442
    BR0280I BRBACKUP time stamp: 2008-10-07 23.21.10
    BR0063I 32 of 47 files processed - 96800.250 MB of 131774.660 MB done
    BR0204I Percentage done: 73.46%, estimated end time: 0:15
    BR0001I *************************************_____________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3700_13/sr3700.data13
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data13.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3700_13/sr3700.data13
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data13.Z  #1/33  2.6589:1  1735215729
    BR0280I BRBACKUP time stamp: 2008-10-07 23.28.56
    BR0063I 33 of 47 files processed - 101200.258 MB of 131774.660 MB done
    BR0204I Percentage done: 76.80%, estimated end time: 0:16
    BR0001I **************************************____________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3700_14/sr3700.data14
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data14.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3700_14/sr3700.data14
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data14.Z  #1/34  2.5051:1  1950590943
    BR0280I BRBACKUP time stamp: 2008-10-07 23.37.16
    BR0063I 34 of 47 files processed - 105860.266 MB of 131774.660 MB done
    BR0204I Percentage done: 80.33%, estimated end time: 0:17
    BR0001I ****************************************__________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3700_15/sr3700.data15
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data15.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3700_15/sr3700.data15
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data15.Z  #1/35  2.4481:1  1961734373
    BR0280I BRBACKUP time stamp: 2008-10-07 23.45.43
    BR0063I 35 of 47 files processed - 110440.273 MB of 131774.660 MB done
    BR0204I Percentage done: 83.81%, estimated end time: 0:19
    BR0001I ******************************************________
    BR0201I Compressing /oracle/BRD/sapdata4/sr3700_16/sr3700.data16
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data16.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3700_16/sr3700.data16
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data16.Z  #1/36  2.4551:1  1956094567
    BR0280I BRBACKUP time stamp: 2008-10-07 23.53.54
    BR0063I 36 of 47 files processed - 115020.281 MB of 131774.660 MB done
    BR0204I Percentage done: 87.29%, estimated end time: 0:20
    BR0001I ********************************************______
    BR0201I Compressing /oracle/BRD/sapdata4/sr3700_17/sr3700.data17
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3700.data17.Z ...
    #FILE..... /oracle/BRD/sapdata4/sr3700_17/sr3700.data17
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3700.data17.Z  #1/37  821.5857:1  5845387
    BR0280I BRBACKUP time stamp: 2008-10-07 23.57.04
    BR0063I 37 of 47 files processed - 119600.289 MB of 131774.660 MB done
    BR0204I Percentage done: 90.76%, estimated end time: 0:15
    BR0001I *********************************************_____
    BR0201I Compressing /oracle/BRD/sapdata1/sr3usr_1/sr3usr.data1
    BR0203I to /sapcd/Backup1/bdyzdwvz/sr3usr.data1.Z ...
    #FILE..... /oracle/BRD/sapdata1/sr3usr_1/sr3usr.data1
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sr3usr.data1.Z  #1/38  191.8320:1  109365
    BR0280I BRBACKUP time stamp: 2008-10-07 23.57.05
    BR0063I 38 of 47 files processed - 119620.297 MB of 131774.660 MB done
    BR0204I Percentage done: 90.78%, estimated end time: 0:15
    BR0001I *********************************************_____
    BR0201I Compressing /oracle/BRD/sapdata2/temp_1/temp.data1
    BR0203I to /sapcd/Backup1/bdyzdwvz/temp.data1.Z ...
    #FILE..... /oracle/BRD/sapdata2/temp_1/temp.data1
    #SAVED.... /sapcd/Backup1/bdyzdwvz/temp.data1.Z  #1/39  21.1750:1  99039231
    BR0280I BRBACKUP time stamp: 2008-10-07 23.58.30
    BR0063I 39 of 47 files processed - 121620.305 MB of 131774.660 MB done
    BR0204I Percentage done: 92.29%, estimated end time: 0:14
    BR0001I **********************************************____
    BR0201I Compressing /oracle/BRD/sapdata3/undo_1/undo.data1
    BR0203I to /sapcd/Backup1/bdyzdwvz/undo.data1.Z ...
    #FILE..... /oracle/BRD/sapdata3/undo_1/undo.data1
    #SAVED.... /sapcd/Backup1/bdyzdwvz/undo.data1.Z  #1/40  2.4706:1  3734915085
    BR0280I BRBACKUP time stamp: 2008-10-08 00.16.23
    BR0063I 40 of 47 files processed - 130420.312 MB of 131774.660 MB done
    BR0204I Percentage done: 98.97%, estimated end time: 0:18
    BR0001I *************************************************_
    BR0201I Compressing /oracle/BRD/sapdata1/sysaux_1/sysaux.data1
    BR0203I to /sapcd/Backup1/bdyzdwvz/sysaux.data1.Z ...
    #FILE..... /oracle/BRD/sapdata1/sysaux_1/sysaux.data1
    #SAVED.... /sapcd/Backup1/bdyzdwvz/sysaux.data1.Z  #1/41  3.6962:1  79436311
    BR0280I BRBACKUP time stamp: 2008-10-08 00.16.48
    BR0063I 41 of 47 files processed - 130700.320 MB of 131774.660 MB done
    BR0204I Percentage done: 99.18%, estimated end time: 0:18
    BR0001I **************************************************
    BR0201I Compressing /oracle/BRD/sapdata1/system_1/system.data1
    BR0203I to /sapcd/Backup1/bdyzdwvz/system.data1.Z ...
    #FILE..... /oracle/BRD/sapdata1/system_1/system.data1
    #FILE..... /oracle/BRD/sapdata1/system_1/system.data1
    #SAVED.... /sapcd/Backup1/bdyzdwvz/system.data1.Z  #1/42  3.3510:1  269109633
    BR0280I BRBACKUP time stamp: 2008-10-08 00.17.58
    BR0063I 42 of 47 files processed - 131560.328 MB of 131774.660 MB done
    BR0204I Percentage done: 99.84%, estimated end time: 0:18
    BR0001I **************************************************
    BR0201I Compressing /oracle/BRD/origlogA/log_g11m1.dbf
    BR0203I to /sapcd/Backup1/bdyzdwvz/log_g11m1.dbf.Z ...
    #FILE..... /oracle/BRD/origlogA/log_g11m1.dbf
    #SAVED.... /sapcd/Backup1/bdyzdwvz/log_g11m1.dbf.Z  #1/43  2.0068:1  26126256
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.07
    BR0063I 43 of 47 files processed - 131610.329 MB of 131774.660 MB done
    BR0204I Percentage done: 99.88%, estimated end time: 0:18
    BR0001I **************************************************
    BR0201I Compressing /oracle/BRD/origlogB/log_g12m1.dbf
    BR0203I to /sapcd/Backup1/bdyzdwvz/log_g12m1.dbf.Z ...
    #FILE..... /oracle/BRD/origlogB/log_g12m1.dbf
    #SAVED.... /sapcd/Backup1/bdyzdwvz/log_g12m1.dbf.Z  #1/44  2.1924:1  23913909
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.23
    BR0063I 44 of 47 files processed - 131660.330 MB of 131774.660 MB done
    BR0204I Percentage done: 99.91%, estimated end time: 0:18
    BR0001I **************************************************
    BR0201I Compressing /oracle/BRD/origlogA/log_g13m1.dbf
    BR0203I to /sapcd/Backup1/bdyzdwvz/log_g13m1.dbf.Z ...
    #FILE..... /oracle/BRD/origlogA/log_g13m1.dbf
    #SAVED.... /sapcd/Backup1/bdyzdwvz/log_g13m1.dbf.Z  #1/45  1.7739:1  29556053
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.30
    BR0063I 45 of 47 files processed - 131710.331 MB of 131774.660 MB done
    BR0204I Percentage done: 99.95%, estimated end time: 0:18
    BR0001I **************************************************
    BR0201I Compressing /oracle/BRD/origlogB/log_g14m1.dbf
    BR0203I to /sapcd/Backup1/bdyzdwvz/log_g14m1.dbf.Z ...
    #FILE..... /oracle/BRD/origlogB/log_g14m1.dbf
    #SAVED.... /sapcd/Backup1/bdyzdwvz/log_g14m1.dbf.Z  #1/46  1.9547:1  26822719
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.38
    BR0063I 46 of 47 files processed - 131760.332 MB of 131774.660 MB done
    BR0204I Percentage done: 99.99%, estimated end time: 0:18
    BR0001I **************************************************
    BR0201I Compressing /oracle/BRD/origlogA/cntrl/cntlrBRD.dbf
    BR0203I to /sapcd/Backup1/bdyzdwvz/cntlrBRD.dbf.Z ...
    #FILE..... /oracle/BRD/origlogA/cntrl/cntlrBRD.dbf
    #SAVED.... /sapcd/Backup1/bdyzdwvz/cntlrBRD.dbf.Z  #1/47  50.8405:1  295515
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.39
    BR0063I 47 of 47 files processed - 131774.660 MB of 131774.660 MB done
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.30
    BR0063I 45 of 47 files processed - 131710.331 MB of 131774.660 MB done
    BR0204I Percentage done: 99.95%, estimated end time: 0:18
    BR0001I **************************************************
    BR0201I Compressing /oracle/BRD/origlogB/log_g14m1.dbf
    BR0203I to /sapcd/Backup1/bdyzdwvz/log_g14m1.dbf.Z ...
    #FILE..... /oracle/BRD/origlogB/log_g14m1.dbf
    #SAVED.... /sapcd/Backup1/bdyzdwvz/log_g14m1.dbf.Z  #1/46  1.9547:1  26822719
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.38
    BR0063I 46 of 47 files processed - 131760.332 MB of 131774.660 MB done
    BR0204I Percentage done: 99.99%, estimated end time: 0:18
    BR0001I **************************************************
    BR0201I Compressing /oracle/BRD/origlogA/cntrl/cntlrBRD.dbf
    BR0203I to /sapcd/Backup1/bdyzdwvz/cntlrBRD.dbf.Z ...
    #FILE..... /oracle/BRD/origlogA/cntrl/cntlrBRD.dbf
    #SAVED.... /sapcd/Backup1/bdyzdwvz/cntlrBRD.dbf.Z  #1/47  50.8405:1  295515
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.39
    BR0063I 47 of 47 files processed - 131774.660 MB of 131774.660 MB done
    BR0204I Percentage done: 100.00%, estimated end time: 0:18
    BR0001I **************************************************
    BR0280I BRBACKUP time stamp: 2008-10-08 00.18.42
    BR0304I Starting and opening database instance BRD ...
    BR0278E Command output of '/oracle/BRD/102_64/bin/sqlplus /nolog < /oracle/BRD/s
    apbackup/.bdyzdwvz.spi':
    SQL*Plus: Release 10.2.0.2.0 - Production on Wed Oct 8 00:18:42 2008
    Copyright (c) 1982, 2005, Oracle.  All Rights Reserved.
    SQL> Connected to an idle instance.
    SQL>
    SQL> ORA-00081: address range [0x600000000009C450, 0x600000000009C454) is not re
    adable
    ORA-00600: internal error code, arguments: [ksfdnfy2], [ODM ERR: Calling stubbed
    version], [], [], [], [], [], []
    SQL> Disconnected
    BR0280I BRBACKUP time stamp: 2008-10-08 00.40.35
    BR0279E Return code from '/oracle/BRD/102_64/bin/sqlplus /nolog < /oracle/BRD/sa
    pbackup/.bdyzdwvz.spi': 0
    BR0302E SQLPLUS call for database instance BRD failed
    BR0306E Start and open of database instance BRD failed
    BR0115I Compression rate for all files 3.3134:1
    BR0280I BRBACKUP time stamp: 2008-10-08 00.40.36
    BR0304I Starting and opening database instance BRD ...
    BR0280I BRBACKUP time stamp: 2008-10-08 00.51.54
    BR0305I Start and open of database instance BRD successful
    BR0056I End of database backup: bdyzdwvz.afd 2008-10-08 00.40.35
    BR0280I BRBACKUP time stamp: 2008-10-08 00.52.51
    BR0054I BRBACKUP terminated with errors
    Thanks in advance.
    Regards,
    Amit

  • ORA-42009: error occurred while synchronizing the redefinition

    Hi ,
    While doing a online table redef , I am getting below error . Could you please help me here .
    Done with can_redef_table with rowid,start_redef_table,copy_table_dependents and errored out on below statement
    exec dbms_redefinition.sync_interim_table('MYSCHEMA', 'ORIGINALTAB', 'INTERIMTAB');
    ORA-42009: error occurred while synchronizing the redefinition
    ORA-12008: error in materialized view refresh path
    ORA-04098: trigger MYSCHEMA.TMP$$_ORIGINALTAB_HISTOR0' is invalid and failed re-validation
    ORA-06512: at "SYS.DBMS_REDEFINITION", line 119
    ORA-06512: at "SYS.DBMS_REDEFINITION", line 1753
    ORA-06512: at line 1
    select * from v$version
    Oracle Database 11g Enterprise Edition Release 11.2.0.2.0 - 64bit Production
    PL/SQL Release 11.2.0.2.0 - Production
    CORE 11.2.0.2.0 Production
    TNS for Linux: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    Thanks ,
    Mahesh

    Adding to above .
    I am Redefining a normal table to a partitioned table . We have a index in this original table . Do we need to follow the below in this scenrio or oracle will take care using copy_table_deendencies .
    --from doc
    4.Manually create any local indexes on the interim table.
    CREATE INDEX int_sales_index ON int_salestable
    (s_saledate, s_productid, s_custid)
    TABLESPACE tbs_low_freq;
    I even tried redefining a normal table with no dependencies to a partitioned table and found no errors like above .
    Does this mean that we have to create dependecis manually while redef table to partition as below
    http://www.oracle-base.com/articles/misc/PartitioningAnExistingTable.php
    --it says
    Create Constraints and Indexes
    If there is delay between the completion of the previous operation and moving on to finish the redefinition, it may be sensible to resynchronize the interim table before building any constraints and indexes. The resynchronization of the interim table is initiated using the following command.
    -- Optionally synchronize new table with interim data before index creation
    BEGIN
    dbms_redefinition.sync_interim_table(
    uname => USER,
    orig_table => 'BIG_TABLE',
    int_table => 'BIG_TABLE2');
    END;
    /The constraints and indexes from the original table must be applied to interim table using alternate names to prevent errors. The indexes should be created with the appropriate partitioning scheme to suit their purpose.
    -- Add new keys, FKs and triggers.
    ALTER TABLE big_table2 ADD (
    CONSTRAINT big_table_pk2 PRIMARY KEY (id)
    CREATE INDEX bita_created_date_i2 ON big_table2(created_date) LOCAL;
    CREATE INDEX bita_look_fk_i2 ON big_table2(lookup_id) LOCAL;
    ALTER TABLE big_table2 ADD (
    CONSTRAINT bita_look_fk2
    FOREIGN KEY (lookup_id)
    REFERENCES lookup(id)
    -- Gather statistics on the new table.
    EXEC DBMS_STATS.gather_table_stats(USER, 'BIG_TABLE2', cascade => TRUE);
    Thanks ,
    Mahesh

Maybe you are looking for