Incorrectly Declaring Schemas as Invalid???

I am having some problems with the document validation of DBXML. I have a few schemas that I wrote using XMLSpy 2004 (I know it's a little old). They validate through XMLSpy. I also validated them against the W3C validator and they all passed. However, when I try and run a document that references them through DBXML, I get the following error:
Error: XML Indexer: Parse error in document at line, 1, char 536. Parser message: Complex type 'RecordType' violates the Unique Particle Attribution rule in its components 'bytes' and '##other', errcode = INDEXER_PARSER_ERROR
The complexType 'RecordType' is defined below:
     <xs:complexType name="RecordType">
          <xs:sequence minOccurs="1" maxOccurs="1">
               <xs:element ref="ad:adminData"/>
               <xs:choice>
                    <xs:element name="bytes" type="xs:base64Binary"/>
                    <xs:any namespace="##other" minOccurs="0" maxOccurs="1" processContents="skip"/>
               </xs:choice>
          </xs:sequence>
     </xs:complexType>
If I remove one of the lines from the <xs:choice> element (bytes, or any) it works just fine.
Thanks in advance,
Brian J. Clark

After doing a lot of experimentation, I don't think the problem is on my end. I think DBXML (meaning Xerces-C) has a problem with <xs:any> elements. I have created a very basic xsd file and a very basic xml file that contain nothing but a root element with one child. They validate against XMLSpy just fine.
Schema:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema targetNamespace="info:rfa/rfaRegistry/xmlSchemas/iwsaDeposit" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:ad="info:rfa/rfaRegistry/xmlSchemas/adminData" xmlns:col="info:rfa/rfaRegistry/xmlSchemas/collection" xmlns:dc="info:fra/fraRegistry/xmlSchemas/dcInfo" xmlns="info:rfa/rfaRegistry/xmlSchemas/iwsaDeposit">
     <xs:annotation>
          <xs:appinfo>
               <dc:title>RFA Item-Level Deposit Record</dc:title>
               <dc:creator>Jeffrey A. Young</dc:creator>
               <dc:date>2006-08-31</dc:date>
          </xs:appinfo>
     </xs:annotation>
     <xs:element name="data" type="dataType" />
     <xs:complexType name="dataType">
          <xs:sequence>
               <xs:any processContents="strict"/>
          </xs:sequence>
     </xs:complexType>
</xs:schema>
XML File:
<?xml version="1.0" encoding="UTF-8"?>
<da:data xmlns:da="info:rfa/rfaRegistry/xmlSchemas/iwsaDeposit"
xmlns:ad="info:rfa/rfaRegistry/xmlSchemas/adminData"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="info:rfa/rfaRegistry/xmlSchemas/iwsaDeposit
D:/Data/eclipse/workspace/GDFRPrototype/xml/xsd/iwsaDeposit-2.xsd
info:rfa/rfaRegistry/xmlSchemas/adminData
D:/Data/eclipse/workspace/GDFRPrototype/xml/xsd/adminData.xsd">
     <info>Stuff</info>
</da:data>
I get the following error from DBXML:
com.sleepycat.dbxml.XmlException: Error: XML Indexer: Parse error in document at line, 1, char 458. Parser message: Unknown element 'info', errcode = INDEXER_PARSER_ERROR

Similar Messages

  • How to recompile the entire schema's INVALID objects in one go?

    Hi,
    How to recompile the entire schema's invalid database objects (such as package, function, procedure, trigger etc) in one go?
    Please advise.
    Thank you.

    I often use this SQL.
    select 'Alter ' || OBJECT_TYPE || ' ' || OBJECT_NAME || ' compile;' as DDL
      from user_objects
    where STATUS = 'INVALID';I sometimes use this SQL.
    declare
        WK_InvalidCount     pls_Integer :=0;
        WK_PrevInvalidCount pls_Integer :=0;
    begin
        loop
            for rec_work in (select a.object_type,a.object_name from user_objects a ,user_object_size b
                             where  a.status='INVALID' and a.object_name=b.name order by b.code_size
                            ) loop
                dbms_ddl.alter_compile(rec_work.object_type,user,rec_work.object_name);
                DBMS_Output.Put_Line(rec_work.object_name || 'is recompiles');
            end loop;
            select count(*) into WK_InvalidCount from user_objects where status='INVALID';
            if WK_InvalidCount=0 then
                DBMS_Output.Put_Line('InvalidObject none');
                exit;
            elsif WK_InvalidCount != WK_PrevInvalidCount then
                WK_PrevInvalidCount := WK_InvalidCount;
            else
                DBMS_Output.Put_Line('InvalidObjects remain' || to_char(WK_InvalidCount));
                exit;
            end if;
        end loop;
    end;
    /

  • ORABPEL - 03003 Incorrect db schema version

    Hi,
    Os: windows 2000
    I had installed OraBPELServer (version 10.1.2.0.0) in the location D:\OraBPELPM which is runing on the oc4j.it was running perfectly with out any startup exception. Then i installed new OracleBPELPM which use JBoss at c:\OraBPEL_Jboss.The new one also runs correctly.
    The problem is when start my old Oc4jOracleBPEL it is not starting it's giving the following exception .
    Detected data source 'olite'
    06/08/03 08:25:49 ORABPEL-03003
    Incorrect db schema version.
    The database schema version "2.0.3" from the database does not match the version "2.0.2" expected by the server.
    The database schema currently in place has probably been configured for a previo
    us release; please re-install the database schema and try to start the server again.
    06/08/03 08:25:49 at om.collaxa.cube.engine.adaptors.util.BaseSchemaManag
    er.getSchemaVersion(BaseSchemaManager.java:90)
    06/08/03 08:25:49 at com.collaxa.cube.engine.adaptors.util.DataSourceSchem
    aUtils$1.validateCompatibility(DataSourceSchemaUtils.java:72)
    Can any one please tell me how to re-install the database schema in (Oralite).
    Thanks
    Bogi

    the script to re-install the olite object can be found at:
    ORACLE_HOME\integration\orabpel\system\database\scripts
    and look for the olite scripts. Install the script with msql.

  • Incorrect DB schema version

    When I try to start the BPEL PM Server, it stalls just after initializing the Oracle Application Server Containers for J2EE 10g (10.1.2.0.0). Higher up in the command window is the following error message:
    Incorrect DB schema version.
    The database schema version “2.0.2” from the database does not match the version “2.0.3” expected by the server.
    The database schema currently in place has probably been configured for a previous release; please re-install the database schema and try to start the server again.
    I am using a 10g Release 2 EE database, not Oracle Lite. Is 10g Release 2 incompatible with the 10.1.2 BPEL PM Server? Is there another reason for this error message?
    Thanks.
    Chris

    Hi,
    run the following commands as orabpel user and restart the bpel server.
    update version_server set guid='2.0.3';
    commit;
    Thanks,
    Narasimha

  • Invalid Object "Swapping" Between Two Schemas

    Hi all,
    I have an issue in my 11.2.0.2 database.
    I have two schemas that are almost exactly the same (one is part of a development environment, the other is a test environment) that have invalid procedures in them. These procedures exist in both schemas. There are a couple peculiar things about these procedures:
    -They have no compiler errors. If I compile a procedure, it becomes valid.
    -Once we compile a procedure in one schema, the same procedure in the other schema becomes invalid.
    To give an example:
    In schema APP_DEV, there is a procedure PROC1. It also exists in another schema APP_TEST.
    PROC1 is INVALID in APP_DEV, but is VALID in APP_TEST.
    If we compile PROC1 in APP_DEV, it becomes VALID in APP_DEV, but PROC1 will be INVALID in APP_TEST.
    In essence, these procedures "flip-flop" between being valid and invalid, as if they are connected somehow. But the two schemas cannot see each other because they have no select, execute or any other privileges to interact with each other.
    If anyone can shed some light on this, it'd be greatly appreciated.
    Thanks,
    Clint

    OK, I have it.
    DOH!  (told ya)
    So, while intellisense (typically) flags this table as not existing, that's just Intellisense doing the nonsense it always does. This obfuscated the ACTUAL error - which was the wrong schema defined in the output clause. The error itself pointed at the wrong
    line (nothing new there either). Once I fixed the OUTPUT clause, everything worked as expected - although SSMS is still putting squiggly red lines under everything that is working anyway. Yeah, we've all seen THAT behavior - no big deal.
    Anyway, that's the answer. It's magic - in that the error messages specialize in misdirection :)...
    Closing this. (I wonder if I get credit for answering my own question?)

  • Custom authentication scheme: Invalid Session Target

    Yesterday I spent a lot of time figuring out what was happening and I'm not sure if this is a bug or a feature...
    Create an application with some public pages (1,2,101) and some non-public pages (3,4).
    Created a list on page 0 listing all pages but only listing page 3 and 4 when user is logged in.
    Created a custom authentication scheme.
    Running the application showed me the page 1 and the list containing 1,2,101.
    I could navigate to 101 and then log in after which I was taken to page 1 showing only 1,2,101.
    I changed page 101 so that it would take me to page 3 after logging in and it did. The list showed me 1,2,101,3,4 and the username was also visible.
    I could visit all pages correctly except page 1. Whenever I navigated to page 1 I effectively got logged out.
    Finally I discovered that I had set "Invalid Session Target" to page 1 in my authentication scheme.
    Is this the intended effect ?

    Rene,
    When a page is selected in the authentication scheme's Invalid Session Page LOV, it gets designated as "the login page". Whenever this page is rendered, APP_USER is null and APP_SESSION is a new session ID. This accounts for what you saw. It's sort of a quirk more than a bug or feature and we ought to properly document this behavior. If, for some reason, you needed a login page that you could navigate back to (after login) in the current session and using the current APP_USER value, you can deselect the page from the Invalid Session Page LOV in the authentication scheme and instead code this in the Invalid Session URL:
    f?p=&APP_ID.:101:&APP_SESSION.
    ...using 101 as the login page, but it can be any page ID as long as it's a public page.
    Scott

  • Invalid Name Pattern in SQL Developer Data Modeler

    I am using Data Modeler version 3.3.0.747, I have exported a couple of data models (logical and physical) to an Oracle 11.2.0.3 database. I used the Reporting_Schema_Permissions.sql file to define the ID that owns the repository. Each data model that I exported returned the successful export message.
    However when I use Oracle Data Modeler and connect (as a different user) to the repository to generate a report on one of the diagrams I immediately get an error returned. The error is (from the log file in datamodeler\log\datamodeler.log):
    2013-04-19 08:36:12,233 [Thread-18] ERROR ReportsGenerationDialog - Generating report from Reporting Schema exception - invalid name pattern: username.OBJECTS_LIST
    Where username is the name of the ID being used to generate the report (not the repository owner ID).
    I have created public synonyms on the repository tables and views (though I must have missed where that was a requirement) so the repository objects can be seen by other users.
    Has anyone encountered this and if so how did you resolve it. I have searched the web (and the Oracle forums) and so far had no hits on this issue. That seems to indicate that there is something I must have missed in the setup or such.
    Thanks

    Hi,
    I think you didn't grant EXECUTE to package and types. Here is full working script:
    DECLARE
    CURSOR cur IS SELECT table_name, owner FROM all_tables WHERE owner='<owner>';
    BEGIN
    FOR rec IN cur LOOP
    EXECUTE IMMEDIATE 'GRANT SELECT ON '||'<owner>'||'.'||rec.table_name||' to '||'<another_user>';
    EXECUTE IMMEDIATE 'CREATE SYNONYM '||'<another_user>'||'.'||rec.table_name||' FOR '||'<owner>'||'.'||rec.table_name;
    END LOOP;
    END;
    DECLARE
    CURSOR cur IS SELECT view_name FROM all_views WHERE owner='<owner>';
    BEGIN
    FOR rec IN cur LOOP
    EXECUTE IMMEDIATE 'GRANT SELECT ON '||'<owner>'||'.'||rec.view_name||' to '||'<another_user>';
    EXECUTE IMMEDIATE 'CREATE SYNONYM '||'<another_user>'||'.'||rec.view_name||' FOR '||'<owner>'||'.'||rec.view_name;
    END LOOP;
    END;
    DECLARE
    CURSOR cur IS SELECT type_name FROM all_types WHERE owner='<owner>';
    BEGIN
    FOR rec IN cur LOOP
    EXECUTE IMMEDIATE 'GRANT EXECUTE ON '||'<owner>'||'.'||rec.type_name||' to '||'<another_user>';
    EXECUTE IMMEDIATE 'CREATE SYNONYM '||'<another_user>'||'.'||rec.type_name||' FOR '||'<owner>'||'.'||rec.type_name;
    END LOOP;
    END;
    GRANT EXECUTE ON <owner>.pkg_osdm_utils to <another_user>;
    CREATE SYNONYM <another_user>.pkg_osdm_utils FOR <owner>.pkg_osdm_utils;
    There is no document for reporting repository install process. If you are exporting design for first time, the repository is automatically created for you.
    When you get new version of DM you can
    1. Use new repository
    2. Upgrade existing one. If so, the simplest variant is to run /datamodeler/reports/DMRS_Upgrade_Script_<latest_vesrion>. Eventually compile single stored procedure.
    Another variant for upgrade is with running osddm_upgr.sql, but there is some error, which is going to be fixed in the next release.

  • Trouble Using Netbeans and XML Schema

    I am currently experimenting on using XML files to store data for a game that I am developing. I had been using NetBeans 5.5 to validate my XML Schema (I am still new to XSD); however, now I am getting errors and have been trying for the better part of the week but am still unable to resolve them. Here is a clip from one of the schemas:
    <?xml version="1.0" encoding="ISO-8859-1" standalone="no" ?>
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema"
               xmlns:cdt="http://JoaL.blissfulTragedy.com/Characters"
               targetNamespace="http://JoaL.blissfulTragedy.com/Characters" >
        <!-- Document to Define Character Attributes and their current Constraints -->
        <!-- Character Name -->
        <xs:simpleType name="name">
            <xs:restriction base="xs:NMTOKEN">
                <xs:maxLength value="15"    />
                </xs:restriction>
            </xs:simpleType>
    ... When I validate the XML (the two down arrows) I get the following errors for every restriction I have declared:
    s4s-att-invalid-value: Invalid attribute value for 'base' in element 'restriction'. Recorded reason: UndeclaredPrefix: Cannot resolve 'xs:NMTOKEN' as a QName: the prefix 'xs' is not declared.After retyping the file three times I tried one of the stock NetBeans schemas, which will produce the same error whenever I add a restriction through the UI.
    Any advice will be greatly appreciated :P

    I think this is a dirty great bug in the Sun version of the apache Xerces classes that were bundled with jdk1.5.
    I've had similar problems, and it seems to boil down to the fact that the NamespaceSupport class's getURI method does == instead of .equals when looking up the uri for a particular prefix. I'm told that this is a deliberate feature for the Apache stuff, and that the class assumes interned strings or strings that have gone through their internal SymbolTable mechanism, and that I can work around it by using interned strings. However, it is one of their classes that fails to intern the string (or put it through the symbol table etc.), so that doesn't really make sense as there are no hooks into this stuff.
    They have even marked the bug as closed/fixed, and I'm attempting to re-raise it at present (so it'll be fixed in about ten years then).

  • OID is INVALID when query dba_registry

    Hi Everyone.
    I have a problem with OAS in Development environment... when I query dba_registry (as follows) I got the following output:
    SQL> l
    1 select comp_id, comp_name, version, status, modified
    2 from dba_registry
    3* where status = 'INVALID'
    SQL> /
    COMP_ID COMP_NAME VERSION STATUS MODIFIED
    OID Oracle Internet Directory 10.1.2.3.0 ; INVALID 07-AUG-2008 02:11:20
    I also ran @?/rdbms/admin/utlrp.sql and no errors were found
    SQL> @?/rdbms/admin/utlrp
    TIMESTAMP
    COMP_TIMESTAMP UTLRP_BGN 2009-09-02 11:15:26
    PL/SQL procedure successfully completed.
    TIMESTAMP
    COMP_TIMESTAMP UTLRP_END 2009-09-02 11:16:12
    PL/SQL procedure successfully completed.
    Invoking Ultra Search Install/Upgrade validation procedure VALIDATE_WK
    Ultra Search VALIDATE_WK done with no error
    PL/SQL procedure successfully completed.
    And also check opmctl status, and OID process is ALIVE:
    --> opmnctl status
    Processes in Instance: INSTANCE.server.domain
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | 2505 | Alive
    OC4J | OC4J_SECURITY | 7134 | Alive
    HTTP_Server | HTTP_Server | 7100 | Alive
    OID | OID | 7104 | Alive
    DSA | DSA | N/A | Down
    Do you have any idea on how to solve OID INVALID status???
    I'd really appreciate your time and help

    Check if any ODS components are invalid
    # Review $ORACLE_HOME/ldap/admin/LOGS/ldapupgrade.log
    Check for any errors or messages.
    - If any significant problems are seen, correct them and rerun oidiugrd.sql
    - If no problems are found, or invalid status persists after rerunning, continue with the following steps:
    # Check the ODS schema for invalid objects and correct as necessary
    % sqlplus / as sysdba
    SQL> select owner,object_name,object_type from dba_objects
    2> where owner='ODS' and status='INVALID';
    # Cut the final validation portion of oidiugrd.sql and run it by itself:
    alter session set current_schema = SYS;
    execute DBMS_IAS_VERSION.SET_COMPONENT_UPGRADED(COMPONENT_ID=>'OID');
    declare
    rc integer;
    begin
    rc := ods.ldapUpgUtls.validateODS();
    if rc = 0 then
    DBMS_IAS_VERSION.SET_COMPONENT_VALID(COMPONENT_ID=>'OID');
    else
    DBMS_IAS_VERSION.SET_COMPONENT_INVALID(COMPONENT_ID=>'OID');
    end if;
    end;
    -SRP

  • How to delete an apple-id that was created with an invalid email address?

    After upgrading to IOS.5.0, my apple-id for the IPod was incorrectly change to an invalid email address.
    I have verified my apple id on itunes on my desk top. How ever, the apple id on the IPad  is still an invalid address which I can't validate or change.
    Any ideas will be appreciated.
    Thanks
    Mitch

    If everything works in iTunes on the computer see if this works. Sign out of the invalid account/email address and the sign in with the correct one on the iPad. Settings>Store>Apple ID - sign out.
    Restart the iPad before you try signing in with the correct ID.
    Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.

  • Xdksample_093001.zip - Schema Validation example

    I have downloaded this example and installed it as per
    instructions.
    when I try to run it I get the following error.
    The following error has occurred:
    ORA-29532: Java call terminated by uncaught Java exception:
    oracle.xml.parser.schema.XSDException: Element 'schema' has
    invalid namespace: 'http://www.w3.org/2001/XMLSchema'
    ORA-06512: at "NM31.SCHEMAUTIL", line 0
    ORA-06512: at line 15
    Details:
    ORA-29532: Java call terminated by uncaught Java exception:
    oracle.xml.parser.schema.XSDException: Element 'schema' has
    invalid namespace: 'http://www.w3.org/2001/XMLSchema'
    ORA-06512: at "NM31.SCHEMAUTIL", line 0
    ORA-06512: at line 15
    How do I/Can I resolve this?

    Hi Jinyu
    This is the java code loaded in the database using loadjava called by a wrapper oracle stored procedure
    import oracle.xml.parser.schema.*;
    import oracle.xml.parser.v2.*;
    import java.net.*;
    import java.io.*;
    import org.w3c.dom.*;
    import java.util.*;
    import oracle.sql.CHAR;
    import java.sql.SQLException;
    public class SchemaUtil
    public static String validation(CHAR xml, CHAR xsd)
    throws Exception
    //Build Schema Object
    XSDBuilder builder = new XSDBuilder();
    byte [] docbytes = xsd.getBytes();
    ByteArrayInputStream in = new ByteArrayInputStream(docbytes);
    XMLSchema schemadoc = (XMLSchema)builder.build(in,null);
    //Parse the input XML document with Schema Validation
    docbytes = xml.getBytes();
    in = new ByteArrayInputStream(docbytes);
    DOMParser dp = new DOMParser();
    // Set Schema Object for Validation
    dp.setXMLSchema(schemadoc);
    dp.setValidationMode(XMLParser.SCHEMA_VALIDATION);
    dp.setPreserveWhitespace (true);
    StringWriter sw = new StringWriter();
    dp.setErrorStream (new PrintWriter(sw));
    try
    dp.parse (in);
    sw.write("The input XML parsed without errors.\n");
    catch (XMLParseException pe)
    sw.write("Parser Exception: " + pe.getMessage());
    catch (Exception e)
    sw.write("NonParserException: " + e.getMessage());
    return sw.toString();
    This is the code i used initially for validating a xml file against single xml schema (.xsd) file
    In the above code could u tell how to specify the second schema validation code for the incoming xml.
    say i create another Schemadoc for the 2nd xml schema.
    something like this with another parameter(CHAR xsd1) passing to the method
    byte [] docbytes1 = xsd1.getBytes();
    ByteArrayInputStream in1 = new ByteArrayInputStream(docbytes1);
    XMLSchema schemadoc1 = (XMLSchema)builder.build(in1,null);
    DOMParser dp = new DOMParser();
    How to set for the 2nd xml schema validation in the above code or can i combine 2 xml schemas.
    How to go about it
    Rgrds
    Sushant

  • AQSample: invalid namespace error

    I installed the AQSample and followed the instructions for setup.
    I was able to go to the website initially (http://localhost:8888/aq/Login.jsp) and I got the login screen. But when I typed in "bob" and "welcome" and pressed "login", I got an error that said:
    500 Internal Server Error
    oracle.xml.parser.schema.XSDException: Element 'schema' has invalid namespace: 'http://www.w3.org/1999/XMLSchema'
         at oracle.xml.parser.schema.XSDBuilder.buildSchema(XSDBuilder.java:488)
         at oracle.xml.parser.schema.XSDBuilder.build(XSDBuilder.java:296)
         at oracle.xml.parser.schema.XSDBuilder.build(XSDBuilder.java:278)
         at ControllerServlet.parseXML(Unknown Source)
         at ControllerServlet.init(Unknown Source)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpApplication.loadServlet(HttpApplication.java:1673)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpApplication.findServlet(HttpApplication.java:4006)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpApplication.getRequestDispatcher(HttpApplication.java:2204)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:585)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.run(HttpRequestHandler.java:243)
         at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java:64)
    In the command line window where I had run "java -jar oc4j.jar", this message appeared:
    file:/D:/oracle/ora90/j2ee/home/AQConfig/Control.xsd<Line 2, Column 87>: XSD-203
    0: (Error) Element 'schema' has invalid namespace: 'http://www.w3.org/1999/XMLSc
    hema'
    Any idea what the problem is?

    Hi Katherine,
    Which version of OC4J are you using to deploy the sample? The sample has been tested against version 9.0.0.2 of OC4J. Could you please try to run the sample in this version. It seems that there is some discrepancy between the namespace expected by your XML parser and the namespace that the sample is using.
    Alternatively, you can change the namespace in all the XML and XSD files present in the AQConfig folder. In all the 3 XML files (Control.xml, DataBaseParameters.xml and Exceptions.xml), please replace the following line -
    xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"
    with
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    In all the 3 XSD (Schema) files, please replace the following line -
    http://www.w3.org/1999/XMLSchema
    with
    http://www.w3.org/2001/XMLSchema
    After making these changes, the sample should work fine.
    Thanks,
    Rajat

  • WWV_FLOW_XLIFF is invalid

    hello,
    i tried to export a XLIFF File.
    But there comes an ORA-06805 that the WWV_FLOW_XLIFF body is invalid.
    i cannot recompile it.
    Is this a known problem??
    bye
    Volker

    Hello,
    "system" means the flows_03000 schema.
    i checked the rest of the entire database there are only invalid objects in the
    old flows_016.. flows_02... schemas. but they are not used any more
    1)
    the select shows only the WWV_FLOW_XLIFF in the flows_030000 Schema as invalid.
    2)
    the enviroment is oracle 9.2.0.5
    jvm installed
    oracle text installed and used
    No XDB Schema is installed there
    volker

  • Missing UNB and UNZ segments in D95B Codeco EDI Schema!

    Hello,
    I need to use the D95B Codeco EDI Schema in a map but the UNB and UNZ segments are missing from this schema. I read on the net that these segments have to be added in the pipeline using EDI Schema extensions and/or envelopes. How do I go about adding these
    two segments to the shipped EDI Codeco schema without invalidating it?
    Thanx a lot for your answers.

    Hi BizTalkler,
    As per your request have composed article (divided in three parts as it was too long) and helper class in this case is bit different as have considered subelement values as well (which was not in EDI X12), below are links:
    BizTalk Server : Fetching UNB and UNG Segment Values From Interchange Envelope and Mapping - Part 1
    BizTalk Server : Fetching UNB and UNG Segment Values From Interchange Envelope and Mapping- Part 2
    BizTalk Server : Fetching UNB and UNG Segment Values From Interchange Envelope and Mapping- Part3
    EDIFACTSegmentValueFetcher Helper Class
    Maheshkumar
    S Tiwari|User
    Page|Blog|BizTalk
    Server : Fetching UNB and UNG Segment Values From Interchange Envelope and Mapping

  • How to patch de Oracle 8.1.7 database without invalidating Portal?

    Hi
    I have an existing Oracle 8.1.7 database with Portal 3.0.8. I installed the upgrade script to take it to 3.0.9 but there is a requirement to
    install patch 2 of Oracle 8.1.7. But everytime a patch de database the objects from the portal schema gets invalidated. I try to
    reconstruct the objects but I still get the same invalidated objects. Can somebody tell me the steps that I have to take to succesfully
    install the patch?

    Unless you have an extended support contract with Oracle for version 8.1.7, there is no way that you can get the binaries for an out-of-support product.
    That said, why do you want to use an old version? That too, on an operating system which has been released a decade after Oracle 8.1.7 release?

Maybe you are looking for