<?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>topic Re: Oracle table export with varray data type in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365429#M129031</link>
    <description>you can get your data using something like
&lt;BR /&gt;SELECT w.*,e.*
&lt;BR /&gt;from yourtavle w , TABLE (w.yourVarrayColumn) e
&lt;BR /&gt;use it on your query or on a lockup with a tMap.
&lt;BR /&gt;Regards,</description>
    <pubDate>Mon, 17 Jun 2019 16:15:32 GMT</pubDate>
    <dc:creator>fdenis</dc:creator>
    <dc:date>2019-06-17T16:15:32Z</dc:date>
    <item>
      <title>Oracle table export with varray data type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365424#M129026</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We have requirement there we need to take varray table data into csv file.In that table one column is having object data type for varray.How to fetch data if varray column type and write into a file.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Please assist.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vivek&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 05:36:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365424#M129026</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T05:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle table export with varray data type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365425#M129027</link>
      <description>can you a sample of varray in csv.
&lt;BR /&gt;
&lt;BR /&gt;you may get it by splitting field or using document data type</description>
      <pubDate>Wed, 12 Jun 2019 13:00:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365425#M129027</guid>
      <dc:creator>fdenis</dc:creator>
      <dc:date>2019-06-12T13:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle table export with varray data type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365426#M129028</link>
      <description>&lt;P&gt;In Toracleinput we have two property i.e. TYPE and DB TYPE for type we can select 'document' but&lt;STRONG&gt; what we need to select for DB TYPE,because there is no&amp;nbsp;'document' value in drop down.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 12 Jun 2019 13:58:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365426#M129028</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-12T13:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle table export with varray data type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365427#M129029</link>
      <description>if you want to convert your array to xml you can use XMLTYPE but VARCHAR2 is good.
&lt;BR /&gt;db type is not important. java type is.</description>
      <pubDate>Wed, 12 Jun 2019 14:06:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365427#M129029</guid>
      <dc:creator>fdenis</dc:creator>
      <dc:date>2019-06-12T14:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle table export with varray data type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365428#M129030</link>
      <description>&lt;P&gt;Got below error when selected document and varchar2 .&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Execution failed : Job compile errors&lt;BR /&gt;At least job "Test3" has a compile errors, please fix and export again.&lt;BR /&gt;Error Line: 1801&lt;BR /&gt;Detail Message: The method getDocument(int) is undefined for the type ResultSet&lt;BR /&gt;There may be some other errors caused by JVM compatibility. Make sure your JVM setup is similar to the studio.&lt;/P&gt;</description>
      <pubDate>Thu, 13 Jun 2019 09:05:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365428#M129030</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-06-13T09:05:48Z</dc:date>
    </item>
    <item>
      <title>Re: Oracle table export with varray data type</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365429#M129031</link>
      <description>you can get your data using something like
&lt;BR /&gt;SELECT w.*,e.*
&lt;BR /&gt;from yourtavle w , TABLE (w.yourVarrayColumn) e
&lt;BR /&gt;use it on your query or on a lockup with a tMap.
&lt;BR /&gt;Regards,</description>
      <pubDate>Mon, 17 Jun 2019 16:15:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Oracle-table-export-with-varray-data-type/m-p/2365429#M129031</guid>
      <dc:creator>fdenis</dc:creator>
      <dc:date>2019-06-17T16:15:32Z</dc:date>
    </item>
  </channel>
</rss>

