<?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: [resolved] Split a single row to multiple rows (CSV File). in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347362#M114629</link>
    <description>hey that's freakin GREAT man, I liked the '@' delimeter approach you have used. 
&lt;BR /&gt;Thanks for taking out time and mentioning it in so much detail. This tool really provides endless possibilities in the ETL domain. One just needs to use the building blocks efficiently. 
&lt;BR /&gt;Best Regards, 
&lt;BR /&gt;Umar</description>
    <pubDate>Wed, 28 Oct 2009 08:51:54 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2009-10-28T08:51:54Z</dc:date>
    <item>
      <title>[resolved] Split a single row to multiple rows (CSV File).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347359#M114626</link>
      <description>Hy everyone!.
&lt;BR /&gt;I'm using talend studio 3.2.0 with WinXP SP3. I have a csv file that has following fields in it. 
&lt;BR /&gt;Timestamp, param1,param2,param3,param1,param2,param3,param1,param2,param3
&lt;BR /&gt;2009-08-15,1,2,3,4,5,6,7,8,9
&lt;BR /&gt;Basically i want to seperate each record into 3 different records like this.
&lt;BR /&gt;Timestamp,param1,param2,param3
&lt;BR /&gt;2009-08-15,1,2,3
&lt;BR /&gt;2009-08-15,4,5,6
&lt;BR /&gt;2009-08-15,7,8,9
&lt;BR /&gt;Can this be achieved using talend etl tool? if yes what components should be used. I'm entirely new to talend and considering it as an alternative to Pentaho kettle.</description>
      <pubDate>Sat, 16 Nov 2024 13:42:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347359#M114626</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Split a single row to multiple rows (CSV File).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347360#M114627</link>
      <description>Hello guy 
&lt;BR /&gt;Yes, it is easy to finish it with talend etl tool. I will show you a demo soon... 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Wed, 28 Oct 2009 08:23:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347360#M114627</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-28T08:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Split a single row to multiple rows (CSV File).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347361#M114628</link>
      <description>Hello 
&lt;BR /&gt;Here is the demo: 
&lt;BR /&gt;in.csv: 
&lt;BR /&gt; 
&lt;B&gt;&lt;BR /&gt;Timestamp,param1,param2,param3,param1,param2,param3,param1,param2,param3&lt;BR /&gt;2009-08-15,1,2,3,4,5,6,7,8,9&lt;BR /&gt;2009-09-12,A,B,C,D,E,F,G,H,I&lt;BR /&gt;&lt;/B&gt; 
&lt;BR /&gt;code on tJavaRow: 
&lt;BR /&gt; 
&lt;PRE&gt;output_row.timestamp = input_row.timestamp;&lt;BR /&gt;output_row.conn= input_row.p1+","+input_row.p2+","+input_row.p3+"@"+input_row.p4+","+input_row.p5+","+input_row.p6+"@"+input_row.p7+","+input_row.p8+","+input_row.p9;&lt;/PRE&gt; 
&lt;BR /&gt;Result: 
&lt;BR /&gt; 
&lt;PRE&gt;Starting job forum8666 at 16:31 28/10/2009.&lt;BR /&gt; connecting to socket on port 3947&lt;BR /&gt; connected&lt;BR /&gt;.----------+------+------+------.&lt;BR /&gt;|           tLogRow_1           |&lt;BR /&gt;|=---------+------+------+-----=|&lt;BR /&gt;|timestamp |param1|param2|param3|&lt;BR /&gt;|=---------+------+------+-----=|&lt;BR /&gt;|2009-08-15|1     |2     |3     |&lt;BR /&gt;|2009-08-15|4     |5     |6     |&lt;BR /&gt;|2009-08-15|7     |8     |9     |&lt;BR /&gt;|2009-09-12|A     |B     |C     |&lt;BR /&gt;|2009-09-12|D     |E     |F     |&lt;BR /&gt;|2009-09-12|G     |H     |I     |&lt;BR /&gt;'----------+------+------+------'&lt;BR /&gt; disconnected&lt;BR /&gt;Job forum8666 ended at 16:31 28/10/2009. &lt;/PRE&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; 
&lt;BR /&gt; shong</description>
      <pubDate>Wed, 28 Oct 2009 08:43:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347361#M114628</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-28T08:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Split a single row to multiple rows (CSV File).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347362#M114629</link>
      <description>hey that's freakin GREAT man, I liked the '@' delimeter approach you have used. 
&lt;BR /&gt;Thanks for taking out time and mentioning it in so much detail. This tool really provides endless possibilities in the ETL domain. One just needs to use the building blocks efficiently. 
&lt;BR /&gt;Best Regards, 
&lt;BR /&gt;Umar</description>
      <pubDate>Wed, 28 Oct 2009 08:51:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347362#M114629</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-28T08:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Split a single row to multiple rows (CSV File).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347363#M114630</link>
      <description>The other option (which I used for a file) is to create three separate outputs with a tMap and then merge them with a tUnite.  Doesn't require hand coding.</description>
      <pubDate>Wed, 28 Oct 2009 20:17:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347363#M114630</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-10-28T20:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: [resolved] Split a single row to multiple rows (CSV File).</title>
      <link>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347364#M114631</link>
      <description>Rather than using tUnite, you can unite them directly in the tMap: when creating the second and third outputs within tMap just select the "Create join table from" option rather than the default "New output" option. There will then be only one flow out of the tMap but it will include the rows from both of the output tables within tMap.
&lt;BR /&gt;However, from v4.2.0, the tSplitRow component handles the original requirement very well.</description>
      <pubDate>Sun, 12 Jun 2011 03:38:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/resolved-Split-a-single-row-to-multiple-rows-CSV-File/m-p/2347364#M114631</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2011-06-12T03:38:40Z</dc:date>
    </item>
  </channel>
</rss>

