<?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: Nested table Data reterival with TOracleInput in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264455#M44284</link>
    <description>&lt;P&gt;Looking for appropiate solution .how to dump the nested table data into csv file in talend.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;any other way to create dump file(.dmp) of nested tables in talend?&lt;/P&gt;</description>
    <pubDate>Wed, 24 Apr 2019 08:41:47 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-04-24T08:41:47Z</dc:date>
    <item>
      <title>Nested table Data reterival with TOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264453#M44282</link>
      <description>&lt;P&gt;Hi Team,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Our requirement is to read data from nested tables and create csv files however nested table data is not completely fetching in talend with ToracleInput component and Dynamic data&amp;nbsp; type (Because we need to process n number of tables in list).We are using following query to fetch data from nested table.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;SELECT * FROM XT_ST, table(OB_ST);&lt;/P&gt;
&lt;P&gt;Csv file is not having data of nested table object.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can Talend retrieve complete data from nested table?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards,&lt;/P&gt;
&lt;P&gt;Vivek&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 06:03:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264453#M44282</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T06:03:12Z</dc:date>
    </item>
    <item>
      <title>Re: Nested table Data reterival with TOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264454#M44283</link>
      <description>&lt;P&gt;What results are you expecting and what results are you getting?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I think you are going to have to treat your nested table like it is multiple tables. If your data looks like this....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;TABLE style="border-collapse: collapse; width: 195pt;" border="0" width="261" cellspacing="0" cellpadding="0"&gt; 
 &lt;TBODY&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD width="87" height="21" style="height: 16.0pt; width: 65pt;"&gt;Id&lt;/TD&gt; 
   &lt;TD width="87" style="width: 65pt;"&gt;Name&lt;/TD&gt; 
   &lt;TD width="87" style="width: 65pt;"&gt;Address&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;1&lt;/TD&gt; 
   &lt;TD&gt;Richard&lt;/TD&gt; 
   &lt;TD&gt;{"1 Johns Close", "Dartford", "London"}&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;2&lt;/TD&gt; 
   &lt;TD&gt;John&lt;/TD&gt; 
   &lt;TD&gt;{"Home"}&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;3&lt;/TD&gt; 
   &lt;TD&gt;Mike&lt;/TD&gt; 
   &lt;TD&gt;{"2 Joy Road", "Surrey","UK"}&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;4&lt;/TD&gt; 
   &lt;TD&gt;Gemma&lt;/TD&gt; 
   &lt;TD&gt;{"Some", "Road", "Somewhere"}&lt;/TD&gt; 
  &lt;/TR&gt; 
 &lt;/TBODY&gt; 
&lt;/TABLE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I think you are going to have to work with it so that it arrives in CSV like this......&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;TABLE style="border-collapse: collapse; width: 195pt;" border="0" width="261" cellspacing="0" cellpadding="0"&gt; 
 &lt;TBODY&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD width="87" height="21" style="height: 16.0pt; width: 65pt;"&gt;Id&lt;/TD&gt; 
   &lt;TD width="87" style="width: 65pt;"&gt;Name&lt;/TD&gt; 
   &lt;TD width="87" style="width: 65pt;"&gt;Address&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;1&lt;/TD&gt; 
   &lt;TD&gt;Richard&lt;/TD&gt; 
   &lt;TD&gt;1 Johns Close&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;1&lt;/TD&gt; 
   &lt;TD&gt;Richard&lt;/TD&gt; 
   &lt;TD&gt;Dartford&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;1&lt;/TD&gt; 
   &lt;TD&gt;Richard&lt;/TD&gt; 
   &lt;TD&gt;London&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;2&lt;/TD&gt; 
   &lt;TD&gt;John&lt;/TD&gt; 
   &lt;TD&gt;Home&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;3&lt;/TD&gt; 
   &lt;TD&gt;Mike&lt;/TD&gt; 
   &lt;TD&gt;2 Joy Road&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;3&lt;/TD&gt; 
   &lt;TD&gt;Mike&lt;/TD&gt; 
   &lt;TD&gt;Surrey&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;3&lt;/TD&gt; 
   &lt;TD&gt;Mike&lt;/TD&gt; 
   &lt;TD&gt;UK&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;4&lt;/TD&gt; 
   &lt;TD&gt;Gemma&lt;/TD&gt; 
   &lt;TD&gt;Some&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;4&lt;/TD&gt; 
   &lt;TD&gt;Gemma&lt;/TD&gt; 
   &lt;TD&gt;Road&lt;/TD&gt; 
  &lt;/TR&gt; 
  &lt;TR style="height: 16.0pt;"&gt; 
   &lt;TD height="21" align="right" style="height: 16.0pt;"&gt;4&lt;/TD&gt; 
   &lt;TD&gt;Gemma&lt;/TD&gt; 
   &lt;TD&gt;Somewhere&lt;/TD&gt; 
  &lt;/TR&gt; 
 &lt;/TBODY&gt; 
&lt;/TABLE&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;You can potentially group it in CSV all on one line, but I think you need to think of this like two tables. One table which holds your Id and Name and another that holds your Address details and is linked by Id. I am not certain, but this is best guess as to a solution to the problem I *think* you have.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2019 18:16:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264454#M44283</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-17T18:16:59Z</dc:date>
    </item>
    <item>
      <title>Re: Nested table Data reterival with TOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264455#M44284</link>
      <description>&lt;P&gt;Looking for appropiate solution .how to dump the nested table data into csv file in talend.&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;any other way to create dump file(.dmp) of nested tables in talend?&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 08:41:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264455#M44284</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-24T08:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Nested table Data reterival with TOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264456#M44285</link>
      <description>&lt;P&gt;I think you need to write a query that will output your data in the format I represent in the second of the two tables I put together above.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Apr 2019 10:31:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264456#M44285</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-24T10:31:08Z</dc:date>
    </item>
    <item>
      <title>Re: Nested table Data reterival with TOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264457#M44286</link>
      <description>&lt;P&gt;I checked that but its not working.Is there way way in Talend to achieve this ?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 08:03:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264457#M44286</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-26T08:03:07Z</dc:date>
    </item>
    <item>
      <title>Re: Nested table Data reterival with TOracleInput</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264458#M44287</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/00539000006358bAAA"&gt;@vivek_u&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I followed below link to create NESTED TABLE&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;A href="https://www.orafaq.com/wiki/NESTED_TABLE" target="_blank" rel="nofollow noopener noreferrer"&gt;https://www.orafaq.com/wiki/NESTED_TABLE&lt;/A&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;then in tOracleInput , I used below query&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;"select c.custid, u.street ,u.city,u.state,u.zip&lt;BR /&gt;from customers c, table (c.address) u "&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I was able to create CSV file.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Apr 2019 09:26:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Nested-table-Data-reterival-with-TOracleInput/m-p/2264458#M44287</guid>
      <dc:creator>akumar2301</dc:creator>
      <dc:date>2019-04-26T09:26:15Z</dc:date>
    </item>
  </channel>
</rss>

