ExtractValue vs. XMLTable Character Entity Decoding

In removing the deprecated extract/extractValue methods from my queries, I have run into an issue with character data being extracted via XMLTable.
Character entity encoded data (e.g. "'" as "'") was decoded by extractValue, but remains encoded by XMLTable. For example:
WITH myXML AS
    SELECT XMLTYPE.createXML('<root desc="Here' || chr(38) || 'apos;s an example"/>') AS x
    FROM dual
SELECT
  x,
  extractValue(x, '/root/@desc'),
  mytab.example,
  XMLQuery('/root/@desc' PASSING x RETURNING CONTENT).getStringVal()
FROM
  myXML,
  XMLTable
    '/root'
    PASSING myXML.x
    COLUMNS
      example VARCHAR2(39) PATH '@desc'
  ) mytab;returns
<root desc="Here&apos;s an example"/>     Here's an example     Here&apos;s an example     Here&apos;s an example
Wrapping each column in the SELECT clause in dbms_xmlgen.convert() seems like overkill. Am I doing something wrong?
Thanks.

Funny, didn't notice that one before.
It seems it happens only with attributes in transient XMLType instances.
For example, it works if the XML document is store in an XMLType column/table :
SQL> create table tmp_xml of xmltype;
Table created
SQL> set scan off
SQL> insert into tmp_xml values (xmltype('<root desc="Here&apos;s an example">R&amp;D</root>'));
1 row inserted
SQL>
SQL> SELECT x.*
  2  FROM tmp_xml t
  3     , XMLTable('/root'
  4        PASSING t.object_value
  5        COLUMNS
  6          example varchar2(20) PATH '@desc'
  7        , content varchar2(30) PATH 'text()'
  8       ) x
  9  ;
EXAMPLE              CONTENT
Here's an example    R&D
Workaround with a transient XMLType : the fn:data() function
SQL> SELECT x.*
  2  FROM XMLTable('/root'
  3        PASSING xmltype('<root desc="Here&apos;s an example">R&amp;D</root>')
  4        COLUMNS
  5          example varchar2(20) PATH '@desc'
  6        , content varchar2(30) PATH 'text()'
  7       ) x
  8  ;
EXAMPLE              CONTENT
Here&apos;s an examp R&D
SQL>
SQL> SELECT x.*
  2  FROM XMLTable('/root'
  3        PASSING xmltype('<root desc="Here&apos;s an example">R&amp;D</root>')
  4        COLUMNS
  5          example varchar2(20) PATH 'data(@desc)'
  6        , content varchar2(30) PATH 'text()'
  7       ) x
  8  ;
EXAMPLE              CONTENT
Here's an example    R&D

Similar Messages

  • HTML Character entity references on SQLQuery

    I am trying retrieve the data thru XMLElement and I like to do a HTML Character entity references. I guess XMLElement does it with the proper character set translations and I was not successul in getting it correct. Could you please help me out. My DB character set it UTF-8.
    For example, the "acute" e needs to be translated to its hexa equivalent. I tried it by setting the mid-tier's client's NLS but with no success. I dont want to scan the each character and convert it.
    create table master.temp_xml_encode
    (party_name_id NUMBER(15),
    party_id NUMBER(15),
    party_name VARCHAR2(200) );
    PARTY_NAME_ID PARTY_ID PARTY_NAME
    3831587 5496840 The West Company México, S.A. de C.V.
    3844362 5496730 Schiønning & Arvé A/S
    3847940 5496836 West Rubber de España, S.A.
    4047634 5983166 Timberland España, S.L.
    4266163 5983166 Timberland España, S.A.
    4285954 6482794 The Young Women¿s Christian Association of Central New Jersey
    SELECT XMLELEMENT("party_id", party_id,
    xmlforest(party_name_id AS "partynameid",
    party_name AS "partyname"
    FROM master.temp_xml_encode
    Thanks for your help

    And Yes forgot to add one thing, the index.jsp is a part of the application supplied by vendor and I do not have src of the struts actions (no control on server side code).
    I need to find a solution from client's side.

  • Character entity getting stripped by Dreamweaver

    I'm using some Supplementary Private Use Area-A character entities to load some custom font icons, &#xF0000;, &#xF0001;, and &#xF0002;. For some reason, Dreamweaver keeps stripping out the &#xF0000; entity when I save the document. The other two entities do not get stripped out. I only use the code editor, not the WSYIWYG and my character encoding is set to UTF-8: <meta content="text/html; charset=utf-8" http-equiv="Content-Type">. Am I doing something wrong or is there a setting I'm missing?

    I can confirm this also happens in CS6 ver 12.2 #6006.  I don't know why that particular entity code won't stick.  You can file a bug report below:
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform
    Nancy O.

  • Or.xml.sax giving error when parsing character entity

    I am parsing an xml stream using SAX parser using org.xml.sax.*
    When any XML tag say <name>sumit & sumit</name> OR <name>sumit & sumit</name> is parsed it throws the error as :
    org.xml.sax.SAXParseException: XML-0210: (Fatal Error) Unexpected EOF.
    at java.lang.Throwable.fillInStackTrace(Native Method)
    at java.lang.Throwable.fillInStackTrace(Compiled Code)
    at java.lang.Throwable.<init>(Compiled Code)
    at java.lang.Exception.<init>(Compiled Code)
    at org.xml.sax.SAXException.<init>(Compiled Code)
    at org.xml.sax.SAXParseException.<init>(Compiled Code)
    at oracle.xml.parser.v2.XMLParseException.<init>(Compiled Code)
    at oracle.xml.parser.v2.XMLError.flushErrors(Compiled Code)
    at oracle.xml.parser.v2.XMLError.error(Compiled Code)
    at oracle.xml.parser.v2.XMLError.error(Compiled Code)
    at oracle.xml.parser.v2.XMLReader.popXMLReader(Compiled Code)
    at oracle.xml.parser.v2.NonValidatingParser.parseElement(Compiled Code)
    at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(Compiled Co
    de)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(Compiled Code)
    at oracle.xml.parser.v2.XMLParser.parse(Compiled Code)
    at com.fidelity.fbrs.general.process.GenericSAXHandler.parse(Compiled Co
    de)
    at com.fidelity.fbrs.general.process.ServiceRequest.processComplexXMLReq
    uest(Compiled Code)
    at com.fidelity.fbrs.general.process.ServiceRequest.processXMLRequest(Co
    mpiled Code)
    at com.fidelity.fbrs.general.process.ServiceRequest.service(Compiled Cod
    e)
    at javax.servlet.http.HttpServlet.service(Compiled Code)
    at org.apache.jserv.JServConnection.processRequest(Compiled Code)
    at org.apache.jserv.JServConnection.run(Compiled Code)
    at java.lang.Thread.run(Compiled Code)
    Please let me the resolution,,,
    Thanks
    Sumit

    Correction:
    you need to escape the & character in your XML file by using &amp; instead of using & directly.

  • Ignoring entity references

    Does anyone know how to get the xmlparser wto ignore(pass through without decoding) character entity references?
    I'm using XML as a mechanism to move inserts, updates, and deletes from non-oracle databases into Oracle. The
    XML is put in an A.Q. and then parsed on the Oracle side into sql statements.
    We have entity references like &deg; that we would like the parser to leave alone. We could then insert the reference
    into the database and Web browsers would decode it at retrieval time. Note - we are not using the 9i XML datatype to
    store this data - it is parsed into varchar columns. Currently the parse knows only about the 4 or 5 standard references.
    When it sees one that is not in the DTD it pukes.

    Entity reference means that you use some encoding that does not have
    e.g. character � then you must declare entity references in dtd like:
    <!ENTITY uacute     "�"> <!-- LATIN SMALL LETTER U WITH ACUTE -->
    and in xml:
    <myTextElement>Per&uacute;</myTextElement>.
    but if you have the character in xml like this
    <myTextElement>Per�</myTextElement>
    then you must add encoding to <?xml version="1.0" encoding="some-enc-that-has-eacute">accordingly.
    Anyway, to get rid of these kind of problems you should stick to utf-8 :-)
    BTW. Did I answer the right question?
    Kullervo

  • XML to PCL: Problem with special characters, entity referenceses, etc.

    I (an XML beginner) am trying to produce PCL (escape sequences, you know) documents from XML using the PL/SQL parser and I'm having the following problems:
    1. I need the escape character either in the XSL file, or in the XML, but this results in the error:
    Error occurred while parsing: Invalid char in text.
    2. I also need the character &. I tried to use the entity reference for & but the result was that it's converted to ampersand-#-38; (without the hyphens, of course) in the parsed file.
    3. I have to use characters from the German alphabet (umlauts) but it seems that I'm not the only one who doesn't like them! I tried changing the encoding (ISO-8859-1 or -2) in my XSL file but the error is always:
    Error occurred while parsing: 6-byte UTF8 encoding not supported.
    How can I get all these characters in the result file?
    Thanks for any info on the subject!

    I am having this same trouble. I want to have an XML document that has ISO-8859-1 encoding that contains an (ampersand)amp; character entity. When I apply XSL to this, I want the (ampersand)amp; entity to remain intact. Instead it is converted to (ampersand)#38; Please let me know if you find an answer to this problem. [email protected]
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Penn ([email protected]):
    I (an XML beginner) am trying to produce PCL (escape sequences, you know) documents from XML using the PL/SQL parser and I'm having the following problems:
    1. I need the escape character either in the XSL file, or in the XML, but this results in the error:
    Error occurred while parsing: Invalid char in text.
    2. I also need the character &. I tried to use the entity reference for & but the result was that it's converted to ampersand-#-38; (without the hyphens, of course) in the parsed file.
    3. I have to use characters from the German alphabet (umlauts) but it seems that I'm not the only one who doesn't like them! I tried changing the encoding (ISO-8859-1 or -2) in my XSL file but the error is always:
    Error occurred while parsing: 6-byte UTF8 encoding not supported.
    How can I get all these characters in the result file?
    Thanks for any info on the subject!<HR></BLOCKQUOTE>
    null

  • Quote Character Not Correct

    I have had this problem with KDE for some time, and I just can't figure it out. The problem is with Konq displaying the " character. A fine example is:
    http://www.popsci.com/popsci/science/ar … 71,00.html
    The character becomes a block. I have tried different base fonts and sizes with zero success. My system has a region setup because I thought that might be the problem. Firefox does not have the problem.
    AAARRRGGGHHH!!!
    I am thinking that the problem is just something simple, but for the life of me, I can't figure it out.

    This problem involves at least two characters: ' and ".
    Normally I would have thought it had something
    to do with either the font  you are using or the language
    encoding selected.  But viewing the page's source, it
    is using 'character entity' definitions.
    ' is defined as ' and " is defined as #38;#8220;
    and " (left-side and right-side quotes).
    None ot these three is displayed properly, they are just
    boxes.
    What is interesting is that the dash '-', defined as
    — is displayed properly.
    A relevant reference is:
    http://www.w3.org/TR/REC-html40/sgml/en … tml#h-24.2
    But I don't why these characters are not being properly displayed.

  • Character Encoding OIM - SPML

    Hello Forum,
    When I send a SearchRequest to OIM SPML Webservice, OIM returns this:
    HTTP/1.1 200 OK
    Server: Apache-Coyote/1.1
    X-Powered-By: Servlet 2.4; JBoss-4.0.3SP1 (build: CVSTag=JBoss_4_0_3_SP1 date=200510231054)/Tomcat-5.5
    Content-Type: text/xml;charset=utf-8
    Transfer-Encoding: chunked
    Date: Tue, 31 Jul 2012 12:03:28 GMT
    <?xml version="1.0" encoding="UTF-8"?>
    <ns6:attr name="Users.Last Name" xmlns:ns6="urn:oasis:names:tc:DSML:2:0:core"><ns6:value>P&_#_x_F_3;rtal</ns6:value></ns6:attr>
    As you can observe, spml webservice seems that is using HTML Character Entity References for enconding "ó" (I had to underscore because of the interpretation of the browser it is &#xF3 ; ). This is causing me some headache with the other side integrators, that argue that messages are not coming in UTF-8 encoding.
    We mantain that the message is still UTF-8, but somehow there's being an encoding. ¿Is this normal?¿Do we have any misconfiguration in our environment?
    The most curious thing, is that SOAPUi on raw view of the response, shows the encoded data P&#xF3 ;rtal, but in the XML view shows "Pórtal", so SOAPUi is reencoding accordingly the data.
    Is it possible that the spml message contains "ó" instead of its HTML Character Entity Reference encoding?
    Thanks in advanced.
    Xisco.
    Edited by: user10084309 on 31-jul-2012 5:48
    Edited by: user10084309 on 31-jul-2012 5:51

    Sorry, in the example I gave, the none-english letters looks like this:
    &# 1490;&# 1497;&# 1488;(I made the space between the # and the number delibertly to prevent it from being presented as a letter ...).

  • Displaying HTML character entities in JEditorPane

    Hi,
    I have noticed that when displaying HTML character entity references in a JEditorPane it will show some of them, e.g. &copy; for copyright symbol but not others e.g. &rsquo; for "curly" single quote.
    Is there any way to get JEditorPane to show all (most?) of them?

    Create a class that extends ComboBox and override the
    updateDisplayList and measureText functions. Then use that new
    ComboBox in your code:
    <local:HtmlComboBox .. xmlns:local="components.*".>
    <local:itemRenderer>
    <mx:Component>
    <mx:Text htmlText="{data.label}" />
    </mx:Component>
    </local:itemRenderer>
    </local:HtmlComboBox>
    Put this into a folder called "components" and name the file
    HtmlComboBox.as
    package components
    import mx.controls.ComboBox;
    import flash.text.TextLineMetrics;
    public class HtmlComboBox extends ComboBox
    public function HtmlComboBox()
    super();
    override protected function
    updateDisplayList(unscaledWidth:Number, unscaledHeight:Number):void
    super.updateDisplayList(unscaledWidth,unscaledHeight);
    var s:String = textInput.text;
    textInput.htmlText = s;
    override public function
    measureText(text:String):TextLineMetrics
    return measureHTMLText(text);
    }

  • Euro character display problem

    Hi,
    I stored the euro sign (� ) (press alt+0 1 2 8 on Windows to get that sign) in an Oracle database table in varchar2 type column. when I do 'select * from table_euro;', I get the euro sign displayed properly in SQL prompt.
    SQL> select * from table_euro
    2 /
    NAME

    Now, I programatically read it using Java Resultset object, but it displays as � (which is Alt + 1 2 8 in key press). This' how I fetch it programmatically:
    dbStatement = dbCon.createStatement(ResultSet.TYPE_FORWARD_ONLY,
    ResultSet.CONCUR_READ_ONLY);
    dbDataReader = dbStatement.executeQuery(query);
    while(until result set is read fully)
    Object fieldData = dbDataReader.getObject(fieldIndex);
    System.out.println(fieldData);
    For the euro sign, the above prints � . Why is that? Can anyone please throw some light on it?
    Thanks.

    BIJ001 wrote:
    ? usually creeps in when encoding decoding bytes with an encoding not capable to encode decode a given character,
    which gets replaced with the question mark.:)
    Two different character encodings can indeed give different sequence of bytes on the same character. Decoding will fail when the charset used to decode the bytes to a character is different from the charset used to encode the character to bytes.

  • Displaying Numeric Character Entities

    I�m having a problem displaying numeric character entities such as ��� (m-dash) in my Java application. I have noticed that some characters will show up correctly and some will not, for example �}� (Right curly brace) shows up just fine. I�m having the same problem with Japanese numeric character entities such as �&#24335;�. The encoding that is being used here is UTF-8.
    I am reading the text that contains these entities from a XML file using the following code:
        DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
        dbf.setNamespaceAware(true);
        dbf.setIgnoringComments(true);
        dbf.setIgnoringElementContentWhitespace(true);
        try {
          FileInputStream fff = new FileInputStream(theFile);
          InputSource inSource = new InputSource(new InputStreamReader(fff,"UTF-8"));
          DocumentBuilder db = dbf.newDocumentBuilder();
          Document doc = db.parse(inSource);
        } catch (Exception e) {
          System.out.println("Exception: " + e);
        }Here is a simple example of an xml file.
    <?xml version="1.0" encoding="UTF-8"?>
    <toc name="Course One" file="course1/toc.xml">
    <topic name="Topic � One" file="course1/source/topic1.html"/>
    <topic name="&#24335; (Japanese char)" file="course1/source/topic2.html"/>
    </toc>When I print out the contents of the name attribute I get boxes (or a ?) in place of the character entity. Any help that can be offered here would be greatly appreciated.
    Thanks,
    David

    I just realized that the entities that I put in my post were resolved by the browser, so they didn't show up as the actual numeric entity code as I intended, &#151; (& + #151;) for m-dash &#125; (& + #125;) for the curly brace and &#24335; (& + #24335;) for the Japanese character. The XML file looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <toc name="Course One" file="course1/toc.xml">
    <topic name="Topic &#151; One" file="course1/source/topic1.html"/>
    <topic name="&#24335; (Japanese char)" file="course1/source/topic2.html"/>
    </toc>

  • How to avoid resolving character references

    Hi,
    Let's say an xml content contains > -- character reference for (>). After being parsed by DOMParser and processed by XSLProcessor along with a stylesheet, in the end, this character reference is completely resolved to ">". How would I be able to stop this transformation from resolving character reference or only let it resolve to a unicode such as &#62;.
    Prompt help is highly appreciated!
    Frank.

    You cannot prevent character entity resolution to the best of my knowledge.
    What the use case for wanting to do this?

  • Character Entities - too SMALL

    Is there any way to change the font size for the drop down
    help menu when typing character entities? I have tried changing the
    code view point size but the help menu remains the same size no
    matter what...
    Just to clarify, I am not asking how to change the point size
    of the document - just the drop down dialog box that allows you to
    chose which character entity you want to select.
    Thanks!

    > Is there anyone from Adobe that actually responds to
    these posts?? My
    > original
    > question had to do with the preferences in Dreamweaver,
    not hacking away
    > through my system preferences.
    Rarely. This is a user to user forum, not an official
    communication link to
    Adobe.
    If you need to communicate directly with Adobe, you would
    have to contact
    them directly.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "eperkins21" <[email protected]> wrote in
    message
    news:g6o1f8$peu$[email protected]..
    > Is there anyone from Adobe that actually responds to
    these posts?? My
    > original
    > question had to do with the preferences in Dreamweaver,
    not hacking away
    > through my system preferences.
    >
    > So, thanks *ACE* but unless you know exactly how to
    answer the question
    > using
    > the system preferences, that post is of no help.
    >
    > I find it hard to believe that you can change the font
    size of the
    > document
    > for those who may be visually impaired yet the drop down
    character entity
    > help
    > list remains around 8 points and can not be modified
    without going to
    > "system
    > preferences".
    >
    > How about someone from Adobe actually help out here...
    >
    > Thanks.
    >

  • Xerces XMLSerializer And Character Entities

    After struggling for hours trying to get the "portable" java transformation classes to output my DOM object to a file, I switched to Apache's XMLSerializer. The main problem I'd been having with the transform is that character entity references were maintained in the DOM tree, but kept getting resolved in the file (someone finally pointed me to a document stating that there is currently no way around this problem). The first time I tried using Apache's classes to write the DOM tree, it worked almost perfectly. The entity references actually showed up in the file; the only problem was a minor bug that caused notations to print wrong and make an invalid XML file(<!NOTATION tif SYSTEM 'tif'> became <!NOTATION SYSTEM 'tif'>). I downloaded Xerces 2.4.0 and the notation problem was fixed; unfortunately the character references are now being resolved AGAIN. I'm at the end of my rope....how can I prevent the XMLSerializer from converting references like &rarr; to bizarre utf-8 characters? Any help would be greatly appreciated.
    Here's my code...
    // xmlDocument - DOM Document object
    // fileName - The name of the XML file to write to
    OutputFormat format = new OutputFormat();
    format.setLineSeparator( LineSeparator.Unix );
    format.setIndenting( true );
    format.setPreserveSpace( false );
    XMLSerializer serializer = new XMLSerializer( new FileWriter( fileName ), format );
    DOMSerializer ds = serializer.asDOMSerializer();
    ds.serialize( xmlDocument );
    P.S. - This exact code kept the references in the outputted XML file until I upgraded my xercesImpl.jar. I've also played with most of the methods on OutputFormat without any luck.

    Here are a few snippets:
    <!ENTITY rarr "#x30"> <!-- In our process this should NEVER be resolved -->
    <value>Here is a character entity: &rarr;</value>
    The rarr entity reference becoms an EntityReference object in the DOM tree, but after I run it through XMLSerializer the XML file looks like this:
    <value>Here is a character entity: ?</value>

  • How to insert single colon xml text in the xml table

    Dear Sir,
    how to insert special characters like single colon text example (don't) xml text in to the xml table
    please see the following example its giving me error quoted string is not ended properly
    SQL> insert into ftr_ctl values (1,
    2 xmltype('<po:root xmlns:po="http://www.oracle.com/FC.xsd"
    3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    4 xsi:schemaLocation="http://www.oracle.com/FC.xsd
    5 http://www.oracle.com/FC.xsd">
    6 <row>
    7 <UniqueIdentifier>urn:x-gcs:def:featureType:GFDD::FT_DFDD_100565</UniqueIdentifier>
    8 <AlphaCode>ZB032</AlphaCode>
    9 <Name>Baseline Point</Name>
    10 <Status>Submitted</Status>
    11 <Definition>A location that serves as a point on, and which partially defines a segment
    of, a national boundary baseline.</Definition>
    12 <Description>May be monumented or unmonumented. A national boundary baseline is used fo
    r defining the landward edge or margin of a nation's various contiguous zones such as the 3 and 12 n
    autical mile limits and the Exclusive Economic Zone (EEZ).</Description>
    13 </row>
    14 </po:root>'));
    ERROR:
    ORA-01756: quoted string not properly terminated
    how to solve single quotation like (nation's) in xml data insertion
    please give me reply as soon as possible
    Thanks
    Kabeer

    Hi,
    Use &#x7B;code} tags to post formatted code on the forum.
    That way, your code will be more readable for everyone, and more importantly here, everyone will be able to clearly see what's bothering you :
    &apos;sThe single quote was encoded with the character entity reference "&amp;apos;".
    The conversion is not mandatory but it happens Oracle is doing it in this case.
    It shouldn't be a problem though.
    If you want to extract the value afterwards, it'll come as expected :
    SQL> create table ftr_ctl (id number, doc xmltype);
    Table created
    SQL> insert into ftr_ctl values (1,
      2  xmltype('<po:root xmlns:po="http://www.oracle.com/FC.xsd"
      3  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      4  xsi:schemaLocation="http://www.oracle.com/FC.xsd
      5  http://www.oracle.com/FC.xsd">
      6  <row>
      7  <UniqueIdentifier>urn:x-gcs:def:featureType:GFDD::FT_DFDD_100565</UniqueIdentifier>
      8  <AlphaCode>ZB032</AlphaCode>
      9  <Name>Baseline Point</Name>
    10  <Status>Submitted</Status>
    11  <Definition>A location that serves as a point on, and which partially defines a segment of, a national boundary baseline.</Definition>
    12  <Description>May be monumented or unmonumented. A national boundary baseline is used for defining the landward edge or margin of a nation''s various contiguous zones such as the 3 and 12 nautical mile limits and the Exclusive Economic Zone (EEZ).</Description>
    13  <Alias xsi:nil="true"></Alias>
    14  <SourceItemIdentifier>100565</SourceItemIdentifier>
    15  <SourceReference>DGIWG DFDD BL 2011-1.00</SourceReference>
    16  <SourceURL>https://www.dgiwg.org/FAD/fdd/view?i=100565</SourceURL>
    17  </row>
    18  </po:root>'));
    1 row inserted
    SQL> select extractvalue(doc, '/po:root/row/Description','xmlns:po="http://www.oracle.com/FC.xsd"')
      2  from ftr_ctl
      3  where id = 1
      4  ;
    EXTRACTVALUE(DOC,'/PO:ROOT/ROW/DESCRIPTION','XMLNS:PO="HTTP://WWW.ORACLE.COM/FC.
    May be monumented or unmonumented. A national boundary baseline is used for defi
    ning the landward edge or margin of a nation's various contiguous zones such as
    the 3 and 12 nautical mile limits and the Exclusive Economic Zone (EEZ).
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Is there a best practice way of segregating biztalk permissions across the SDLC?

    I'm working on the SQL Server side of things, helping some people set up a biztalk project. There are some issues with figuring out the SQL permissions required by biztalk and how to set them up. I have read the guide here which indicates which SQL p

  • Access List attribute of selectonechoice

    Hi All, I am using Jdeveloper 11gR2. I have created a query based VO having two attributes - name, INITCAP(name) with list of value created on "name' and display attribute as "INITCAP(name)". As expected the selectonechoice show INITCAP(name) values.

  • Getting apache to talk to Tomcat

    I am trying to get apache to talk to tomcat and when I am compiling the mod_jk.so (Jakarta connectors kit) i am getting a few errors when i run make. I was hoping you can point me in the right direction to get the mod_jk.so binaries so that i can get

  • Toolkit Installation - I can't find it

    Hi, I installed the math interface toolkit 1.0.2 and I can not find the functions. I have reinstalled several time. In fact, I reinstall the whole  LabVIEW product, and try  to install the toolkit again, but to no avail. When I checked the Measuremen

  • Forms Developer 10 Nested Tables

    I have table for customers with a nested table for addresses. I want to use a form to show the details of both the table and the nested table. Any ideas? Thanks,