Oracle Team, SCHEMA DEMOS NEEDED

Hello Oracle Team,
I've been trying to use the schema parser for the last month. I've read multiple messages on this news group where people like me whine that they can't get anything to work. There are only like 3 examples that are downloaded with your parser. Obviously, with no other learning resources (besides blindly testing it to see how it reacts) more examples are needed.
Obviously there was some sort of Q.A. that the parser had to go through where it was tested before you posted it. Are those tests laying around somewhere on someone's hard drive. Could you please post some of those examples to this news group? A lot of people like me would really appreciate it.
You have responded to a couple of my previous questions by writing,
"The new beta was released today (October 26). It should fix the problem."
Well I tried to use the new beta for about 6 hours this morning and it didn't fix any of these same problems...
unique, key, keyref, extension, required(for attributes).
I know that the new parser has to work or you wouldn't keep responding to my messages saying it would. Please give some examples of how to use it.
Please post the java files, xsd files and xml files as examples of how to use these features. Please post examples that will run correctly through the parser. Also please post modified xml files that will crash the parser.
null

I've gone to the internet site... http://www.w3.org/TR/xmlschema-0/
and went down the list of functionality that should be in a schema parser. Is this what oracle is basing their parser on? If not where is the standard oracle is going off of?
I've gone through this schema primer and I've tested the oracle schema parser. I've found that about 70% of it is not implemented or I just couldn't figure out how to get the parser to work. Also I've found there a couple of things that did work in the parser, just that the syntax was different. I've found these things (I realize that there are typos here but you'll get the basic idea).....
What Works, What doesn't work, comparing the oracle parser with the w3c spec.
DOESN'T WORK....
<annotation>
</annotation>
syntactical difference (<restriction>)
W3C's
<simpleType name="myInteger">
<restriction base="integer">
<minInclusive value="10000"/>
<maxInclusive value="99999"/>
</restriction>
</simpleType>
Oracle's
<simpleType name="myInteger" base="integer">
<minInclusive value="10000"/>
<maxInclusive value="99999"/>
</simpleType>
syntactical difference (<restriction>/<enumeration>)
W3C's
<simpleType name="USState">
<restriction base="string">
<enumeration value="AK"/>
<enumeration value="AL"/>
<enumeration value="AR"/>
<!-- and so on ... -->
</restriction>
</simpleType>
Oracle's
<simpleType name="USState" base="string">
<enumeration value="AK"/>
<enumeration value="AL"/>
<enumeration value="AR"/>
<!-- and so on ... -->
</simpleType>
<list> tag doesn't appear to type check at all, this code passes fine through the parser!(it shouldn't)
xml file>>
<Test>
asdf
</Test>
xsd file>>
<element name="Test"
type="this:listOfMyIntType" />
<simpleType name="listOfMyIntType">
<list itemType="positiveInteger"/>
</simpleType>
<union> tag doesn't appear to work
xml file>>
<Test>
-11
</Test>
xsd file>>
<element name="Test" type="r:TestUnion"/>
<simpleType name="TestUnion">
<union memberTypes="r:LowIntTyper:MedIntType"/>
</simpleType>
<simpleType name="LowIntType" base="positiveInteger">
<minInclusive value="10"/>
<maxInclusive value="20"/>
</simpleType>
<simpleType name="MedIntType" base="positiveInteger">
<minInclusive value="30"/>
<maxInclusive value="40"/>
</simpleType>
Does Work...:)
use="required" Partially Working...
required actually work now for attributes, you can even type check with it now!-BUT
ONLY AT THE TOP DEFINITIONS LEVEL. I think it's supposed to work inside nested definitions.
I found some really really weird activity with nested definitions though. If I define an
element having 2 attributes and the element is nested... if I say that both elements are
required, then if in the xml file I don't use either I will get the same buggy activity.
The parser doesn't care. BUT if I only declare 1 of the attributes and NOT the other then
the parser gets mad! So, the parser will only check nested level elements attributes if
there are more than one attributes declared and in the xml file I only specify one. HOW NICE!
xml file>>
This one DOESN'T catch the required
<LevelOne>
<elOne>stuff</elOne>
<elTwo>stuff</elTwo>
</LevelOne>
This one catches the required
<LevelOne bugFixOne="2asdf" testAtt="234">
<elOne>stuff</elOne> <elTwo>stuff</elTwo>
</LevelOne>
xsd>>
<complexType name="TypeOne">
<sequence>
<element name="elOne" type="string" minOccurs="0" maxOccurs="unbounded"/> <element name="elTwo" type="string" minOccurs="0" maxOccurs="unbounded"/> </sequence>
&lt ;attribute name="testAtt" type="positiveInteger" use="required"/> <attribute name="bugFixOne" type="string"/> <attribute name="bugFixTwo" type="string"/> </complexType>
null

Similar Messages

  • @oracle team; forms server help desparately needed

    hi
    my company is trying to migrate client machines to linux. our setup should be the following:
    database <-> forms server <-> linux client with applet viewer
    v9.2.....................v9i.................debian 3.0, j2sdk1.3
    i am working on this setup for some months(!) now but i cannot get the clients to communicate stable with the rest of the setup.
    problem: quite frequently the appletviewer will just hang and cause the forms server to create a
    f90webm_dump_`$PID` file
    in its working directory containing the following information:
    [Mon Jan 20 21:58:29 2003 CET]::Client Status [ConnId=0, PID=10033]
    >> Network connection to client failed: timeout on connection
    the people working on the client machines are quite quickly inputting data into our databases. the appletviewer will hang more often on machines < 500 MHz but it also hangs on machines with more than 1.5 GHz and 512 MB DDR
    i have literally tried everything:
    i tried these java versions:
    1.1, 1.3_x, 1.4.1 from sun, blackdown, ibm and even the one that came with the forms server on the clients
    i tried to tune every setting on the forms server and in the jvm.cfg. i even tried to install the forms server on the clients so that i would have one tcp connection less to definitely exclude network failure as a possible reason.
    i tried to use the PREEMPT_CLOSE setting, i even patched the kernels (low latency patch), analysed megabytes of debug logging, tried to strace the appletviewer to find WHY it keeps hanging!!!!
    i tried to use different linux versions for best compatibility on the clients as well as on the forms server:
    debian potato, woody, sarge, sid
    suse 7.1, 7.2, 7.3
    redhat 7.2, 7.3
    i have read almost ALL documentation you could possibly read to find the reason of this problem.
    dear oracle team
    PLEASE just tell me that you have even tested this product and that you know how to make it work in a stable way. we can even pay you money to give us the solution. we have been using oracle forms for 7 years now and we want to stick with it. but our clients HAVE to be able to run the linux OS.
    i have posted this problem 2 or 3 times already but somehow either noone seems to read this or noone has ever tried to use a three tier setup with linux on the middle and the client tier.
    as i said i have wasted MONTHS already trying to get this to work and i am out of ideas what could cause this.
    thanks for ANY reaction
    armin walland

    sorry for not responding a few days, i didnt have the possibility to do so.
    if you access and run the application from a Windows
    client using JInitiator, what happens.i have tried that of course and it seemed to be stable. (no hang in about 2 and a half days). i dont think it is a problem on the forms server itself...maybe just some setting that doesnt cooperate well with the appletviewer.
    Since we don't
    certify Forms9i with appletviewer, we didn't test it
    there.thats what i thought to be honest....since you say "we"; do you work for oracle?
    So first thing to do is to check if the
    problem is a client issue or a server side problem.seems more like a client proble to me though....somehow it looks like some deadlock or race condition, but im not a programmer so this could be a completely wrong impression.
    If youi can, can you try a test on a Windows client?as i said b4, we tried that and it seemed to work finely but it was to test the server and ensure it isnt a complete misconfiguration issue :)
    rgds, armin

  • Missing Oracle Sample Schemas - How Download complete Files

    Dear DBA's
    I appreciate if someone could tell me how setup the ORACLE SAMPLE SCHEMAS, because all my demo folders in 10g and 11G
    $ORACLE_HOME/demo/schema/hr or oe or any other chema there are fiesl missing,
    for instnace looking at the Procedure in doc
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28328.pdf
    it says to run "hr_main.sql" script in folder $ORACLE_HOME/demo/schema/human_resources
    But I can't find any file"hr_main"
    then for PM Schema it's supposed to have a file pm_main.sql !!!! I can't find .....
    The same for SH (Sales History) they say to run the "sh_main.sql" but i can't find anything like "Main"
    Can you please help me to compltely setup the sample schemas ?
    Txs

    I am having the same problem.
    I am running XE and the only sample schema that exists there is HR.
    OE and SH...are not there
    I downloaded companion CD 10 minutes ago from
    http://www.oracle.com/technetwork/database/10201winsoft-095341.html
    and searched through the whole companion and no
    files like :
    sh_main.sql
    mksample
    nothing!
    User Steve Callan placed a data pump file on
    http://www.dbasupport.com/oracle/ora11g/Installing-Oracle-Database-Sample-Schemas-using-Data-Pump.shtml
    but he created it without version parameter, so people who are running data pum from older versions cannot import it.
    I made a comment on the article he posted .
    user13106173 pointed out a link where you can get OE and HR, but I need SH sample schema as well
    So please can somebody direct me to anyplace I can get ALL THE Sample schemas

  • Oracle Fusion Order Demo Application

    Hi,
    I downloaded this DEMO :
    Oracle Fusion Order Demo Application
    http://www.oracle.com/technetwork/developer-tools/jdev/index-095536.html
    And when in step
    9.In the application navigator, under the Resources node, Right click build.xml and choose Run Ant Target > buildAll
    I receive this error :
    Buildfile: E:\Jdev_sources\Infrastructure\Ant\build.xml
    init:
        [mkdir] Created dir: E:\Jdev_sources\Infrastructure\Ant\classes
        [javac] Compiling 1 source file to E:\Jdev_sources\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    E:\Jdev_sources\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    E:\Jdev_sources\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    E:\Jdev_sources\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    E:\Jdev_sources\Infrastructure\DBSchema\build.xml:28: E:\Jdev_sources\Infrastructure\Ant\wlserver_10.3\server\lib not found.
    Total time: 14 secondsEffectiveley E:\Jdev_sources\Infrastructure\Ant\wlserver_10.3\server\lib does not existe but it should be (seems to me) a part of whet was downloaded.
    Thank for help.

    Hi again, and thanks to all.
    I reinstalled all and Now I have the followings that seems to be a connectivity problem :
    First the parameteres in build.properties :
    jdeveloper.home=E:/Oracle/Middleware/jdeveloper
    src.home=..//..
    # JDBC info used to create Schema
    jdbc.driver=oracle.jdbc.OracleDriver
    jdbc.urlBase=jdbc:orcl:thin:@localhost
    jdbc.port=1521
    jdbc.sid=ORCL
    Buildfile: E:\Jdev_source\Infrastructure\Ant\build.xml
    init:
        [mkdir] Created dir: E:\Jdev_source\Infrastructure\Ant\classes
        [javac] Compiling 1 source file to E:\Jdev_source\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    E:\Jdev_source\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    E:\Jdev_source\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    E:\Jdev_source\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    E:\Jdev_source\Infrastructure\DBSchema\build.xml:28: java.sql.SQLException: No suitable Driver for jdbc:orcl:thin:@localhost:1521:ORCL
    Total time: 32 secondsOracle is installed on the same server and DB is on the same server.
    E:\Jdev_source>cd E:\oracle\product\10.2.0\db_1\jdbc\lib
    E:\oracle\product\10.2.0\db_1\jdbc\lib>dir
    Volume in drive E is Data
    Volume Serial Number is E856-5E27
    Directory of E:\oracle\product\10.2.0\db_1\jdbc\lib
    13/11/2009 14:21 <DIR> .
    13/11/2009 14:21 <DIR> ..
    02/02/2008 14:49 1 609 607 classes12.jar
    02/02/2008 14:49 1 622 075 classes12.zip
    02/02/2008 14:49 1 617 382 classes12dms.jar
    11/02/2008 19:52 1 646 217 nls_charset12.jar
    02/02/2008 14:49 1 555 682 ojdbc14.jar
    02/02/2008 14:49 1 563 375 ojdbc14dms.jar
    02/02/2008 14:49 1 958 237 ojdbc14dms_g.jar
    02/02/2008 14:49 1 950 033 ojdbc14_g.jar
    8 File(s) 13 522 608 bytes
    2 Dir(s) 7 992 795 136 bytes free
    Regards.
    Ok finaly it was this :
    jdbc.urlBase=jdbc:oracle:thin:@localhost
    If you look above , before, I had :
    jdbc.urlBase=jdbc:orcle:thin:@localhost
    :=(((
    Now :
    BUILD SUCCESSFUL
    Total time: 35 seconds
    Thanks again.

  • Can't access tables in other Oracle database schemas

    Hi. We got our Oracle database admin to install APEX in our Oracle database. She created a login and schema for my Oracle database user so that I could work with APEX a little. Here's the information on the version of APEX we have installed:
    Database Version Information
    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 IBM/AIX RISC System/6000: Version 11.2.0.2.0 - Production
    NLSRTL Version 11.2.0.2.0 - Production
    I've found that my user is only able to access Oracle tables within my own Oracle database schema. Most of our main tables are in 3 other schemas and I'd need access to all tables in all these schemas. Right now whenever I encounter a drop list of values for Schema, only by own schema is available in the list of values.
    Is there something our Admin can do to make these tables in other schemas available to my user account?

    Sharpe,
    This documentation should point you in the right direction. It will show you how to add multiple schemas to a workspace.
    http://docs.oracle.com/cd/E23903_01/doc/doc.41/e21678/adm_mg_wrkspc.htm#CHDBDCCJ
    Cheers,
    Tyson Jouglet

  • Can I get the oracle database schema in xml like the original ones

    Working with Migration Workbench I've found that uses an XML
    with the schema of the original database. I'm asking if I can
    get the equivalent XML for the oracle model.
    I need a quickly way of get in XML the structure (not data) of
    my oracle databases.
    Any idea?

    Ok, it is unclear on what is happening here.
    Are you saying that when the webclient gets the data that it is not honoring the quote characters? Or the processing of the data buffer is causing issues?
    This is what I see the of your example text which is trying to be parse out:
    <a onmouseover="EnterContent('ToolTip','תווית על בגד: &rsquo;&rsquo;תן לאישה לכבס. זה תפקידה&rsquo;&rsquo;','<u><span style=color:#000099;>כתב: Spook בתאריך: 08.03.15 שעה: 22:11</span></u><br>מחאת טוויטר קמה בעקבות תוויות שוביניסטיות שהדפיסה חברת אופנה באינדונזיה לפיהן תפקיד הכביסה מוטל על האישה. החברה התנצלה אך כנראה רק עשתה רק יותר נזק לע...'); Activate();">";
    It appears to me that the  escapes `&rsquo;` does not have matching `&ldquo;` anywhere within the tooltip. So it appears that the page properly places left quotes in when processing the page, but the raw html has broken text.
    Hence a garbage in, garbage out situation.
    William Wegerson (www.OmegaCoder.Com)

  • Connecting to Oracle Configurator schema in EBS 11.5.10

    Hello,
    Is it possible to connect remotely (from different machine) to Oracle Configurator schema using CZWebAppsContext provided no networking issues? I've copied dbc file locally from EBS server and I've tried different CZWebAppsContext constructor calls to no avail. Perhaps I need to modify the dbc file?
    I get following exception:
    Exception in thread "main" java.lang.RuntimeException: Null JDBC Connection returned from connection pool.
    Contents of CZWebAppsContext error stack: AOLJ_JAVA_EXCEPTION (MESSAGE=Not able to create new database connection: FND FILE_NOT_READABLE N FILE http://server:1557/OA_HTML/env.txt)
    SECURITY-No gateway reconnect
    AOLJ_JAVA_EXCEPTION (MESSAGE=ProfileCache: getLocalJDBCConnection() == null)
    AOLJ_JAVA_EXCEPTION (MESSAGE=Not able to create new database connection: FND FILE_NOT_READABLE N FILE http://server:1557/OA_HTML/env.txt)
    SECURITY-No gateway reconnect
    AOLJ_JAVA_EXCEPTION (MESSAGE=Not able to create new database connection: FND FILE_NOT_READABLE N FILE http://server:1557/OA_HTML/env.txt)
    SECURITY-No gateway reconnect
    FILE_NOT_READABLE (FILE=http://server:1557/OA_HTML/env.txt)
         at oracle.apps.cz.common.CZWebAppsContext.getJDBCConnection(CZWebAppsContext.java:116)
         at oracle.apps.fnd.security.SessionManager.validateLogin(SessionManager.java:1351)
         at package.TestClass.main(TestClass.java:21)
    Indeed there is no http://server:1557/OA_HTML/env.txt
    Code:
    public static void main(String[] args) throws ClassNotFoundException {
         Class.forName("oracle.jdbc.driver.OracleDriver");     
         CZWebAppsContext czContext = new CZWebAppsContext("server", "1557", "c:\\Temp\\dcp.dbc" );
         SessionManager mgr = czContext.getSessionManager();
         // line below throws
         boolean valid = mgr.validateLogin(***, ***);
    DBC file:
    #DB Settings
    #Thu Feb 04 17:18:12 CET 2010
    GUEST_USER_PWD=***/***
    APPL_SERVER_ID=***
    FND_JDBC_BUFFER_DECAY_INTERVAL=300
    APPS_JDBC_DRIVER_TYPE=THIN
    FND_JDBC_BUFFER_MIN=1
    GWYUID=***/***
    FND_JDBC_BUFFER_MAX=5
    APPS_JDBC_URL=jdbc\:oracle\:thin\:@(DESCRIPTION\=(LOAD_BALANCE\=YES)(FAILOVER\=YES)(ADDRESS_LIST\=(ADDRESS\=(PROTOCOL\=tcp)(HOST\=server)(PORT\=1557)))(CONNECT_DATA\=
    (SID\=POC)))
    FND_JDBC_STMT_CACHE_FREE_MEM=TRUE
    FND_JDBC_STMT_CACHE_SIZE=200
    TWO_TASK=POC
    FND_MAX_JDBC_CONNECTIONS=500
    FND_JDBC_USABLE_CHECK=false
    FNDNAM=APPS
    FND_JDBC_PLSQL_RESET=false
    DB_PORT=1557
    FND_JDBC_CONTEXT_CHECK=true
    FND_JDBC_BUFFER_DECAY_SIZE=5
    DB_HOST=server
    Thanks.
    Marcin

    Pl also see ML Note 403261.1. See the aflobbld.sql file for instructions on what parameters to pass.
    Srini

  • All Oracle Sample Schemas and all Oracle Built-in Packages in XE?

    Hi,
    I am trying to install Oracle 10g on my home system to improve my knowledge of PL/SQL. Because I'm doing it at home, I have to solve DBA issues I'm somewhat clueless about.
    I would like to install Oracle 10g Express Edition and include the built-in packages (DBMS_OUTPUT, UTL_FILE, DBMS_UTILITY, DBMS_JOB, DBMS_JAVA, DBMS_RANDOM, etc.) as well as the Oracle sample schemas (HR, OE, PM, SH, and IX). None of these, except HR, is included in the express edition.
    If necessary, I'd like to be able to install these things after installing the express edition. How can I do this?
    Thanks,
    Mike

    Hi Mike,
    checking the documentation is always helpful:
    http://www.oracle.com/pls/xe102/homepage
    http://download-uk.oracle.com/docs/cd/B25329_01/doc/appdev.102/b25108/xedev_programs.htm#i2432
    You can always do a quick search on the documentation homepage, e.g. for utl_file:
    http://www.oracle.com/pls/xe102/search?remark=advanced_search&word=utl_file&format=ranked&book=&preference=
    There shouldn't be a need to install any packages. They should come preinstalled already.
    If not, you can find them here:
    C:\oraclexe\app\oracle\product\10.2.0\server\RDBMS\ADMIN
    Just be very careful before trying to install something into the data dictionary. If you are not experienced, you might mess up your database.
    For example, utl_file is installed but invisible to most users, e.g. HR.
    Look at this example:
    SQL> conn hr/oracle1
    Connect durchgef³hrt.
    SQL> desc utl_file;
    ERROR:
    ORA-04043: Objekt "SYS"."UTL_FILE" ist nicht vorhanden
    SQL> conn sys@XE as sysdba
    Kennwort eingeben:
    Connect durchgef³hrt.
    SQL> desc utl_file;
    PROCEDURE FCLOSE
    Argument Name                  Typ                     In/Out Defaultwert?
    FILE                           RECORD                  IN/OUT
       ID                           BINARY_INTEGER          IN/OUT
       DATATYPE                     BINARY_INTEGER          IN/OUT
       BYTE_MODE                    BOOLEAN                 IN/OUT
    PROCEDURE FCLOSE_ALL
    SQL> grant execute  on utl_file to HR;
    Benutzerzugriff (Grant) wurde erteilt.
    SQL> conn hr/oracle1
    Connect durchgef³hrt.
    SQL> desc utl_file;
    PROCEDURE FCLOSE
    Argument Name                  Typ                     In/Out Defaultwert?
    FILE                           RECORD                  IN/OUT
       ID                           BINARY_INTEGER          IN/OUT
       DATATYPE                     BINARY_INTEGER          IN/OUT
       BYTE_MODE                    BOOLEAN                 IN/OUT
    PROCEDURE FCLOSE_ALL
    PROCEDURE FCOPY
    ...So, after granting execute privileges on utl_file to HR, the user HR can now access utl_file. No need to install it.
    The default packages are installed in the schema SYS.
    Regards,
    ~Dietmar.

  • Oracle Information Schema

    Hello Oracle Experts,
    I have spent sometime without using Oracle SQL. I need to use Oracle Infomation Schema views or table to generate a list of databases, schema(s), table(s), , column(s) and knowing the kind of constraints each table has?
    Can someone point to me in the right direction?
    Thanks,
    Ion

    It doesn't make sense to generate a list of databases from the data dictionary, at least not in the Oracle sense of the word database, since each database has its own set of data dictionary views. You can query V$DATABASE to get information about the current database.
    You can query DBA_USERS to get a list of the users in the database. If you only care about those schemas that contain at least one object
    SELECT DISTINCT owner
      FROM dba_objects
    WHERE owner IN (SELECT username FROM dba_users)You can get a list of tables from DBA_TABLES, a list of columns from DBA_TAB_COLUMNS, and a list of constraints from DBA_CONSTRAINTS.
    Justin
    Edited by: Justin Cave on Jul 11, 2012 3:10 PM

  • Oracle's Schema Processor is failing to catch errors

    I tried validating an XML document with known errors against a valid schema using Oracle's Schema Processor v0_9_0_0 and did not get the expected results.
    I used the following test file:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <Cars xmlns = "http://www.CarDealers.com/"
    xmlns:xsi = "http://www.w3.org/1999/XMLSchema/instance"
    xsi:schemaLocation = "http://www.CarDealers.com/ Store.xsd" RequestDate="ashd">
    <Model>Ford</Model>
    <Make>ExplorerExpeditionTaurusF150Escort</Make>
    <Year>1999</Year>
    <OwnerName>Joe Smith</OwnerName>
    <OwnerName>Bob Jones</OwnerName>
    <Condition Automatic="NA">Small dent on right bumper.</Condition>
    <Mileage>400000000</Mileage>
    </CarDealers>
    And validated the sample against the following schema:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <schema xmlns = "http://www.w3.org/1999/XMLSchema"
    targetNamespace = "http://www.CarDealers.com/">
    <element name="Car">
    <complexType>
    <element name="Model">
    <simpleType base="string">
    <enumeration value = "Ford"/>
    <enumeration value = "Saab"/>
    <enumeration value = "Audi"/>
    </simpleType>
    </element>
    <element name="Make">
    <simpleType base="string">
    <minLength value = "1"/>
    <maxLength value = "30"/>
    </simpleType>
    </element>
    <element name="Year">
    <complexType content="mixed">
    <attribute name="PreviouslyOwned" type="string" use="required"/>
    <attribute name="YearsOwned" type="integer" use="optional"/>
    </complexType>
    </element>
    <element name="OwnerName" minOccurs="0" maxOccurs="unbounded"/>
    <element name="Condition">
    <complexType base="string" derivedBy="extension">
    <attribute name="Automatic">
    <simpleType base="string">
    <enumeration value = "Yes"/>
    <enumeration value = "No"/>
    </simpleType>
    </attribute>
    </complexType>
    </element>
    <element name="Mileage">
    <simpleType base="integer">
    <minInclusive value="0"/>
    <maxInclusive value="20000"/>
    </simpleType>
    </element>
    <attribute name="RequestDate" type="date"/>
    </complexType>
    </element>
    </schema>
    The Oracle parser did not recognize the W3C facet syntax of minLength and maxLength; the file would pass validation if I changed the syntax to minlength and maxlength.
    The Oracle parser did not recoginze the W3C "use=" syntax used for attribute occurrences; the file would pass validation if I changed the syntax to minOccurs and maxOccurs which should be used for element validation only.
    The Oracle parser did not recoginze the W3C "unbounded" syntax used to define max occurrences of elements; the file would pass validation if I changed the syntax to maxOccurs="*" .
    The element "Year" was defined with a required attribute, PreviouslyOwned. However, the sample file is missing both the PreviouslyOwned and optional YearsOwned attributes and passes validation. It appears that the parser does not validate the presence of a required attribute unless another attribute is present for the element, e.g. if the optional YearsOwned attribute was in the file the parser would then catch that the PreviouslyOwned attribute was missing.
    The sample file validated with an incorrect value of "ashd" for the RequestDate element, so it appears the "date" data type is not supported.
    The parser does not recognize the "derivedBy" syntax used to define the Condition element. How else can you define the constraints for an elements value and attributes?
    Based on some additional testing it appears that the Oracle parser cannot handle more than 4 or 5 include statements to reference other schemas.
    Are these known bugs in the Oracle parser? Has Oracle issued any updates to this initial release? Are there any settings I should be aware of that may provide full er validation?
    null

    Hi OTM,
    One of our Integration Subsystem is heavily depend on the schema processor for XML validation. 0.9 release - eventhough it is an Alpha, has proven to be very helpfull for us. We are looking forward to use the final release of this product, and expect it will completely support the W3C Schema Spec. I'm wondering when will be final relase availabe? Could you please give us a time limit for the new release? Thanks.
    Shankar
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Oracle XML Team:
    The current release is the initial one that is incomplete. Our second release is scheduled for the end of the month and will be much better.
    Oracle XML Team<HR></BLOCKQUOTE>
    null

  • Installing oracle XE schema

    hi all,
    i am newbie to ADF.i want to install oracle xe schema, so that i can use HR schema. i downloaded from oracle site.but not able to understand how i execute the scripts .
    is there any blog or tutorial instaling xe schema.

    Hi,
    First:
    - You need to download OracleXE from http://www.oracle.com/technetwork/products/express-edition/downloads/index.html
    Second:
    - You have to install from the downloaded file
    HR schema is available by default in this installation, you can use it after installation.
    Refer : http://docs.oracle.com/cd/E17781_01/install.112/e18802/toc.htm
    - Lalit

  • Unable to integrate Oracle Reports with Express--(To oracle Team also)

    Hi
    Unable to integrate Oracle Reports with Express. While defining
    the Express database connection using the olap connection editor
    iam getting the following error "Error locating the XCONEDIT.INI
    file. Try re-installing the software".
    what should be done?
    Atleat,If anybody has successfully connected to Express via
    Reports6i. Kindly give the details like what softwares to be
    installed in what HOME? and also other steps involved in the
    process.
    YOur help !!!
    kindly respond...(Oracle Team do respond with something)
    with rgds

    hello,
    check out the notes
    Note:112542.1
    Note:167049.1
    on oracle metalink for further information.
    if you still have issues, please contact oracle support services
    for furhter assistence.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Oracle Fusion Order Demo Application For JDeveloper error

    HI,
    i try to run the (Oracle Fusion Order Demo Application For JDeveloper) Fusion Order Demo (FOD) is an end-to-end application sample :
    when i try to : Right click build.xml and choose Run Ant Target > buildAll . error coming
    Buildfile: C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml
    init:
    [javac] Compiling 1 source file to C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\classes
    setProperties:
    createDatabase:
    refreshSchema:
    BUILD FAILED
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\Ant\build.xml:51: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:100: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:63: The following error occurred while executing this line:
    C:\JDeveloper\FusionOrderDemo_R2_1_revised\Infrastructure\DBSchema\build.xml:28: C:\Oracle\Middleware\jdeveloper\wlserver_10.3\server\lib not found.
    Total time: 6 seconds
    how i can run the build.xml

    Hi,
    not quite sure the question is clear. The add cart command is a link defined in the JSPX file
    <af:commandLink partialSubmit="true"
    actionListener="#{shoppingCartBean.addItemToCart}"
    id="cl3">
    that points to
    public void addItemToCart(ActionEvent evt) {
    Map attributes = evt.getComponent().getAttributes();
    invokeUpdateOp(new Integer(attributes.get( PRODUCT_ID_COL )+ ""));
    in StoreFrontModule\StorefrontUI\src\oracle\fodemo\storefront\cart\view\managed\ShoppingCartBean.java . This is where you follow up then.
    +"how i can make Repetition for the items in home.jspx"+
    I can only assume you mean how to create the catalog items. Here I suggest you look at the demo source as this is what the demo is for. If you are new to ADF, I recommend that you first run a tutorial from here
    If you are on 11g R1: http://www.oracle.com/technetwork/developer-tools/jdev/overview/index-100269.html
    If you are on 11g R2: http://docs.oracle.com/cd/E18941_01/tutorials/toc.htm
    No demo can replace proper learning, to be honest
    Frank

  • Considering upgrading from CF8 up to CF11... notice in the CF11 support matrix that Sybase Adaptive Server Enterprise 15.0, 15.5  is not supported.  While we primarily connect to Oracle DB, we do need to connect to Sybase DBs periodically. Is the plan to

    Considering upgrading from CF8 up to CF11... notice in the CF11 support matrix that Sybase Adaptive Server Enterprise 15.0, 15.5  is not supported.  While we primarily connect to Oracle DB, we do need to connect to Sybase DBs periodically.
    Is the plan for CF11 to support Sybase again in the near future?

    Did you ever get a response? I'm merely trying to connect to a Sybase database - and it gives me a java.sql.SQLException:null  error - with no other information.
    I'm running the server on Ubuntu 14.x, 64bit.
    Thanks.

  • Oracle Physical schema password management

    Hi:
    After setting up an Oracle physical schema and attaching a data store, I did a lot of work reversing tables, views etc and using them in my integrations, procedures etc. I never had to look back at the physical schema until we went into production, and the IT have informed me that there is a password ageing restriction for production systems. I made provisions for other system passwords (Planning, Essbase etc) using variables. But I couldn't get my head around to doing it at the Phsyical schema level.
    Given that this is a classic problem, has anyone run into this sort of issue before, and if yes, what's the best practice to deal with it?
    Any help would be greatly appreciated
    Thanks

    Rajesh,
    I see that you are using variables in Planning, essbase. On the same lines you can uses the variable as a password in the physical schema for database servers as well.
    Not that this is the best practice.
    But if your IT has a password ageing restriction - how tough is it for you to change it in the Topology Manager. That is the same as changing it in a database table and refreshing a variable from it but with less overhead.
    Or you can change your system to use service accounts. Usage of service accounts is the best practice for things like these. Ask them - How do they run automated jobs on Unix ? Do they change the passwords for those accounts every now and then. I think the answer that you will get is "We use service accounts for that"
    Are the database passwords stored in LDAP somewhere. Perhaps you can use JNDI to authenticate your database user/password from LDAP.
    In the Dataserver connection properties, you will see the "JNDI Connection" checkbox. If you select it, it will change the next tab to let you add LDAP details.
    Hope that helps

Maybe you are looking for

  • Form works perfectly, in Reader, in other acrobats, but not in Acrobat Pro 9???

    Hi, I have a form I made in LiveCycle designer. It has radio buttons and when a radio button is clicked, it passes an object to a function that then expands a table and adds rows for each item. It works in Reader 10 and 11, but I just had a coworker

  • Screen is dark and blank?

    I can't get my itouch working anymore, screen is dark and blank. it says to me 2205 or 2206 or 2218 or 2220.  the power on button does not work either.

  • Mail Forwarding

    Greetings, I have recently configured a Leopard 10.5.1 Mail Server, which is a new platform for me. I have finally gotten all mail services to work and am finishing up the installation. I have a client that uses a crackberry who wants his email both

  • Bank Reconciliation Report Error

    Hi, Need help. I'm about to generate the bank reconciliation report and I supply the following parameters, Please see attached screenshot of the error. Account Code: Bank500 Reconciliation Number: 20131231 and got error stating below, This field name

  • How can I improve sound quality

    hp envy 14t beats laptop ... how to improve sound quality