<?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 How to split one row into multiples rows? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304815#M76547</link>
    <description>I have the following input:&lt;BR /&gt;Row1:   Name1, FirstName1, Charge1, Charge2, Charge3, Charge4&lt;BR /&gt;Row2:   Name2, FirstName2, Charge1, Charge2, Charge3&lt;BR /&gt;and I would like the following output: &lt;BR /&gt;Row1:   Name1, FirstName1, Charge1&lt;BR /&gt;Row2:   Name1, FirstName1, Charge2&lt;BR /&gt;Row3:   Name1, FirstName1, Charge3&lt;BR /&gt;Row4:   Name1, FirstName1, Charge4&lt;BR /&gt;Row5:   Name2, FirstName2, Charge1&lt;BR /&gt;Row6:   Name2, FirstName2, Charge2&lt;BR /&gt;Row7:   Name2, FirstName2, Charge3&lt;BR /&gt;It looks like I would have to use the Tnormalize function, but I am not able to get the result expected.&lt;BR /&gt;Thanks for your help</description>
    <pubDate>Sat, 16 Nov 2024 13:57:16 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T13:57:16Z</dc:date>
    <item>
      <title>How to split one row into multiples rows?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304815#M76547</link>
      <description>I have the following input:&lt;BR /&gt;Row1:   Name1, FirstName1, Charge1, Charge2, Charge3, Charge4&lt;BR /&gt;Row2:   Name2, FirstName2, Charge1, Charge2, Charge3&lt;BR /&gt;and I would like the following output: &lt;BR /&gt;Row1:   Name1, FirstName1, Charge1&lt;BR /&gt;Row2:   Name1, FirstName1, Charge2&lt;BR /&gt;Row3:   Name1, FirstName1, Charge3&lt;BR /&gt;Row4:   Name1, FirstName1, Charge4&lt;BR /&gt;Row5:   Name2, FirstName2, Charge1&lt;BR /&gt;Row6:   Name2, FirstName2, Charge2&lt;BR /&gt;Row7:   Name2, FirstName2, Charge3&lt;BR /&gt;It looks like I would have to use the Tnormalize function, but I am not able to get the result expected.&lt;BR /&gt;Thanks for your help</description>
      <pubDate>Sat, 16 Nov 2024 13:57:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304815#M76547</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T13:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: How to split one row into multiples rows?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304816#M76548</link>
      <description>Hello 
&lt;BR /&gt;Before you use the tNormalize, you need to concact the normalize columns with another symbol. Here is a simple scenario: 
&lt;BR /&gt;in.csv: 
&lt;BR /&gt; 
&lt;B&gt;&lt;BR /&gt;Name1,FirstName1,Charge1,Charge2,Charge3,Charge4&lt;BR /&gt;Name2,FirstName2,Charge1,Charge2,Charge3&lt;BR /&gt;&lt;/B&gt; 
&lt;BR /&gt;tJavaRow_1: 
&lt;BR /&gt; 
&lt;PRE&gt;output_row.name = input_row.name;&lt;BR /&gt;output_row.firstName = input_row.firstName;&lt;BR /&gt;output_row.conn = input_row.c1+"@"+input_row.c2+"@"+input_row.c3+"@"+input_row.c4;&lt;/PRE&gt; 
&lt;BR /&gt;Result: 
&lt;BR /&gt; 
&lt;PRE&gt;tarting job forum6611 at 14:30 15/05/2009.&lt;BR /&gt;.-----+----------+-------.&lt;BR /&gt;|       tLogRow_1        |&lt;BR /&gt;|=----+----------+------=|&lt;BR /&gt;|name |firstName |conn   |&lt;BR /&gt;|=----+----------+------=|&lt;BR /&gt;|Name1|FirstName1|Charge1|&lt;BR /&gt;|Name1|FirstName1|Charge2|&lt;BR /&gt;|Name1|FirstName1|Charge3|&lt;BR /&gt;|Name1|FirstName1|Charge4|&lt;BR /&gt;|Name2|FirstName2|Charge1|&lt;BR /&gt;|Name2|FirstName2|Charge2|&lt;BR /&gt;|Name2|FirstName2|Charge3|&lt;BR /&gt;'-----+----------+-------'&lt;BR /&gt;Job forum6611 ended at 14:30 15/05/2009. &lt;/PRE&gt; 
&lt;BR /&gt;Best regards 
&lt;BR /&gt; shong</description>
      <pubDate>Fri, 15 May 2009 07:33:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304816#M76548</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-15T07:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to split one row into multiples rows?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304817#M76549</link>
      <description>Thanks a lot! Exactly what I needed.</description>
      <pubDate>Fri, 15 May 2009 21:36:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304817#M76549</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2009-05-15T21:36:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to split one row into multiples rows?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304818#M76550</link>
      <description>This has helped me as well. Thanks shong</description>
      <pubDate>Wed, 29 Jun 2011 01:54:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304818#M76550</guid>
      <dc:creator>jebiya</dc:creator>
      <dc:date>2011-06-29T01:54:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to split one row into multiples rows?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304819#M76551</link>
      <description>SOURCE:
&lt;BR /&gt;
&lt;BR /&gt;
&lt;TABLE&gt;
 &lt;TBODY&gt;
  &lt;TR&gt;
   &lt;TD&gt;&lt;BR /&gt;&lt;B&gt;&lt;U&gt;ID&lt;/U&gt;&lt;/B&gt;&lt;BR /&gt;58&lt;/TD&gt;
   &lt;TD&gt;&lt;U&gt;&lt;B&gt;MEMNO&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;369&amp;amp;370&lt;/TD&gt;
   &lt;TD&gt;&lt;U&gt;&lt;B&gt;NAME&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;Rohit Sharma/Bhupender K&lt;/TD&gt;
   &lt;TD&gt;&lt;/TD&gt;
   &lt;TD&gt;&lt;U&gt;&lt;B&gt;DATE&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;8 Dec 2014/16 Jan 2014&lt;/TD&gt;
  &lt;/TR&gt;
 &lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;BR /&gt;
&lt;U&gt;&lt;B&gt;Target: should be&lt;/B&gt;&lt;/U&gt;
&lt;BR /&gt;ID &amp;nbsp;MAMNO,NAME,DATE
&lt;BR /&gt;58,369,rohitsharma,8 DEC 2014
&lt;BR /&gt;59,370,Bhupender K,16 Jan 2014
&lt;BR /&gt;
&lt;BR /&gt;how can we achieve this by using talend,please any body help me</description>
      <pubDate>Tue, 20 Oct 2015 11:58:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304819#M76551</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-20T11:58:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to split one row into multiples rows?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304820#M76552</link>
      <description>&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&lt;B&gt;&lt;FONT color="#5b5b5d"&gt;&lt;U&gt;ID&lt;/U&gt;&lt;/FONT&gt;&lt;/B&gt;&lt;BR /&gt;58&lt;BR /&gt;&lt;U&gt;&lt;B&gt;&lt;FONT color="#5b5b5d"&gt;MEMNO&lt;/FONT&gt;&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;369&amp;amp;370&lt;BR /&gt;&lt;U&gt;&lt;B&gt;&lt;FONT color="#5b5b5d"&gt;NAME&lt;/FONT&gt;&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;Rohit Sharma/Bhupender K&lt;BR /&gt;&lt;U&gt;&lt;B&gt;&lt;FONT color="#5b5b5d"&gt;DATE&lt;/FONT&gt;&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;8 Dec 2014/16 Jan 2014&lt;BR /&gt;&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;&lt;U&gt;&lt;B&gt;&lt;FONT color="#5b5b5d"&gt;Target: should be&lt;/FONT&gt;&lt;/B&gt;&lt;/U&gt;&lt;BR /&gt;ID &amp;nbsp;MAMNO,NAME,DATE&lt;BR /&gt;58,369,rohitsharma,8 DEC 2014&lt;BR /&gt;59,370,Bhupender K,16 Jan 2014&lt;/FONT&gt;&lt;/FONT&gt;
&lt;BR /&gt;
&lt;FONT size="1"&gt;&lt;FONT face="Verdana, Helvetica, Arial, sans-serif"&gt;how can we achieve using talend and mysql&lt;/FONT&gt;&lt;/FONT&gt;</description>
      <pubDate>Tue, 20 Oct 2015 12:00:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304820#M76552</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-20T12:00:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to split one row into multiples rows?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304821#M76553</link>
      <description>Hi &lt;A href="https://www.talendforge.org/forum/profile.php?id=317145" target="_blank" rel="nofollow noopener noreferrer"&gt;manjunath.m&lt;/A&gt;,&lt;BR /&gt;Please take a look at tExtractRegexFields or tExtractDelimitedFields components.&lt;BR /&gt;&lt;A href="https://help.talend.com/search/all?query=tExtractRegexFields&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/search/all?query=tExtractRegexFields&amp;amp;content-lang=en&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://help.talend.com/search/all?query=tExtractDelimitedFields&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;https://help.talend.com/search/all?query=tExtractDelimitedFields&amp;amp;content-lang=en&lt;/A&gt;&lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Wed, 21 Oct 2015 09:50:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-split-one-row-into-multiples-rows/m-p/2304821#M76553</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-10-21T09:50:04Z</dc:date>
    </item>
  </channel>
</rss>

