<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>Question Re: Oracle XMLtype data type in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377057#M3760366</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FWIW: I have this working with ASE and SS - but, I use the TEXT data type and the Slect/Update Blog commands.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 May 2014 15:37:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-05-22T15:37:39Z</dc:date>
    <item>
      <title>Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaq-p/10377046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Latest Powerbuilder 12.5.2&lt;/P&gt;&lt;P&gt;Oracle 11g&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I update a XMLType column?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; can select it, but errors on update.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 13:38:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaq-p/10377046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T13:38:43Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377047#M3760356</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Robert;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; I have not personally done this with Oracle .. but, my guess is that you may need to use the UpdateBlob command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW: What error(s) are you getting?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards ... Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 13:43:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377047#M3760356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T13:43:19Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377048#M3760357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I already tried that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 13:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377048#M3760357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T13:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377049#M3760358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If data string size is under 4k it works fine. If data is over 4k I get...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ORA-01461: can bind a LONG value only for insert into LONG column.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 13:54:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377049#M3760358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T13:54:54Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377050#M3760359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I suspect that you will need to treat it as a clob, on your select you use the .&lt;SPAN class="bold"&gt;getCLOBVal&lt;/SPAN&gt;() syntax to convert the XMLType to a string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Likewise on your update you use the XMLTYPE function to convert the string back to XML.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE purchaseorder&lt;/P&gt;&lt;P&gt;&amp;nbsp; SET OBJECT_VALUE = XMLType(&amp;lt;xmlstring&amp;gt;), nls_charset_id('AL32UTF8')) where ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not tried this but I hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;David&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 14:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377050#M3760359</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T14:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377051#M3760360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How are you connecting to Oracle ... via ODBC?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 14:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377051#M3760360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T14:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377052#M3760361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The syntax is not correct.&amp;nbsp; I am not sure how to test that.&amp;nbsp; I tried&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; set xml_setting = xmltype(convert(:ls_xmlData , 'UTF8'))&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this also had the same error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 14:18:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377052#M3760361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T14:18:57Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377053#M3760362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, ODBC will not let me even select the column.&amp;nbsp; I am using ORA Oracle.&amp;nbsp; It has the Metadata Type XMLType.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW&amp;nbsp; UpdateBlob errors with....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTBLOB/UPDATEBLOB is valid only for LONG, RAW and LONG RAW datatypes. (108)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 14:25:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377053#M3760362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T14:25:12Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377054#M3760363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry about that, I got the information from this link:&lt;/P&gt;&lt;P&gt;&lt;A href="http://docs.oracle.com/cd/B28359_01/appdev.111/b28369/xdb04cre.htm#CHDCHHJB" title="http://docs.oracle.com/cd/B28359_01/appdev.111/b28369/xdb04cre.htm#CHDCHHJB"&gt;XMLType Operations&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess we need to get the right syntax in sqlplus (or equivalent) then map that to PB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other alternative is to create a procedure to do the update for you, pass in a clob and convert that. The 4k limit you are seeing is the limit on a varchar2. All the xml work I have done has involved endless conversions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OR REPLACE PROCEDURE xmlupdate (xmlin IN CLOB, xmlout OUT CLOB)&lt;/P&gt;&lt;P&gt;IS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; txml&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; XMLTYPE;&lt;/P&gt;&lt;P&gt;BEGIN&lt;/P&gt;&lt;P&gt;-- Convert Clob Received into an XML document&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; txml := xmltype (xmlin);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.....&lt;/P&gt;&lt;P&gt;END;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 14:29:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377054#M3760363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T14:29:08Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377055#M3760364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am guessing that Powerbuilder is not binding the variable correctly. I have this working in Java.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 14:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377055#M3760364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T14:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377056#M3760365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;After trying all different ways I cannot get it to work. Looking at the PB documentation the XMLTYPE is handled as a string, and oracle limits you to 4000 characters. If I go over that I get string literal too long.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I conclude the procedure method is the only way to update large XML strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the syntax I used, as you can see I tried it with two strings less that 4000 just in case, but once the string went over 4000 I got the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;update timesheets.test set xmlstuff = xmltype('&amp;lt;XX&amp;gt;'||:xmlss1||:xmlss1||'&amp;lt;/XX&amp;gt;') where keyx&amp;nbsp; = '1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: David Peace&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 15:10:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377056#M3760365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T15:10:02Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377057#M3760366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;FWIW: I have this working with ASE and SS - but, I use the TEXT data type and the Slect/Update Blog commands.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 15:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377057#M3760366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T15:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377058#M3760367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I also have it working with MS SQL Server and SQL ANywhere, but that's not Oracle.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 15:54:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377058#M3760367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T15:54:03Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377059#M3760368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone still use Oracle?&amp;nbsp;&amp;nbsp; LOL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 16:33:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377059#M3760368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T16:33:01Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377060#M3760369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the PowerBuilder help under datatypes &amp;gt; Oracle it shows the following for the XMLType:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;XMLType (partial support, ORA driver only)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The ORA driver adds support for the &lt;SPAN class="dt"&gt;XMLType&lt;/SPAN&gt; datatype that was introduced with Oracle 9&lt;SPAN class="emphasis"&gt;i&lt;/SPAN&gt;. However, you cannot use this datatype with embedded &lt;ACRONYM title="sequel"&gt;SQL&lt;/ACRONYM&gt; statements or in a DataWindow object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc37776.1252/html/connpb/BHCEGJDB.htm" title="http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc37776.1252/html/connpb/BHCEGJDB.htm"&gt;http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.infocenter.dc37776.1252/html/connpb/BHCEGJDB.htm&lt;/A&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2014 17:39:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377060#M3760369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-22T17:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377061#M3760370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I read that too, so it is limited support i.e. 4000 characters. Very limited for XML data.&lt;SPAN __jive_emoticon_name="silly" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/776/images/emoticons/silly.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm out of ideas &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/776/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 09:32:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377061#M3760370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-23T09:32:26Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377062#M3760371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi David;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Why not just use a Long Raw column and the Select/Update Blob commands?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards .. Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 11:15:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377062#M3760371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-23T11:15:42Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377063#M3760372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am looking into the PBNI interface to see if the XML is &amp;gt; 4K then I will update the column via a C dll.&amp;nbsp; As long as the database connection is available, I should be able to get it to work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First time looking at the PBNI.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 11:37:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377063#M3760372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-23T11:37:50Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377064#M3760373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As long as you're going to be playing with C++ you might just create a simple DLL.&amp;nbsp; You can pass in the handle of the PowerBuilder database connection to the DLL so you can do the work in the same connection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I took the same approach to hiding the SET ROLE statement from the DB Trace log, by creating a DLL that issues that and calling that from PB right after the initial connect.&amp;nbsp; The last part of the following article explains that:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://oracle.sys-con.com/node/927244" title="http://oracle.sys-con.com/node/927244"&gt;http://oracle.sys-con.com/node/927244&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And the source code for the DLL is on CodeXchange (the article has the link).&amp;nbsp; Look for the "DBHandle demo" file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 13:00:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377064#M3760373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-23T13:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle XMLtype data type</title>
      <link>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377065#M3760374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you Bruce for the help! &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 15:39:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/oracle-xmltype-data-type/qaa-p/10377065#M3760374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-23T15:39:16Z</dc:date>
    </item>
  </channel>
</rss>

