<?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: Split one row into multiple rows, keeping no. of columns same in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225898#M18008</link>
    <description>Hello Gnyani, 
&lt;BR /&gt;You can use the combination of tNormalize &amp;amp; or tExtractDlimitedFields to resolve your problem. 
&lt;BR /&gt;Provided If you can write code that splits your data column to split in comma-seperated values. 
&lt;BR /&gt;Regards, 
&lt;BR /&gt;Nirav Shah</description>
    <pubDate>Mon, 06 Aug 2012 08:15:46 GMT</pubDate>
    <dc:creator>_AnonymousUser</dc:creator>
    <dc:date>2012-08-06T08:15:46Z</dc:date>
    <item>
      <title>Split one row into multiple rows, keeping no. of columns same</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225896#M18006</link>
      <description>Hi, 
&lt;BR /&gt;I have a MySQL table with numeral values in a column (that I expect not to increase beyond a number, 15 in particular case). If this values exceeds a predetermined number, I want it to split it into smaller values (each value being less than 15, based upon a criteria that I can not put up here), and distribute into different rows. 
&lt;BR /&gt;For example, if the rows reads something like 
&lt;BR /&gt;id | name | value 
&lt;BR /&gt;1 | abc | 33 
&lt;BR /&gt;2 | pqr | 12 
&lt;BR /&gt;expected output: 
&lt;BR /&gt;id | name | value 
&lt;BR /&gt;1 | abc | 11 
&lt;BR /&gt;2 | abc | 14 
&lt;BR /&gt;3 | abc | 8 
&lt;BR /&gt;4 | pqr | 12 
&lt;BR /&gt;I read that tMap does something similar this (basically for fixed number of output rows), but don't know if it gives this for dynamic number of rows? 
&lt;BR /&gt;thanks 
&lt;BR /&gt;Gn</description>
      <pubDate>Sat, 16 Nov 2024 12:54:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225896#M18006</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T12:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: Split one row into multiple rows, keeping no. of columns same</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225897#M18007</link>
      <description>Your best approach might be to use tMap or tJavaRow to generate a delimited string of your new values e.g. "11,14,8" and then use tNormalize to split it into multiple rows.  You'll have to add the id afterwards.</description>
      <pubDate>Tue, 24 May 2011 23:29:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225897#M18007</guid>
      <dc:creator>alevy</dc:creator>
      <dc:date>2011-05-24T23:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Split one row into multiple rows, keeping no. of columns same</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225898#M18008</link>
      <description>Hello Gnyani, 
&lt;BR /&gt;You can use the combination of tNormalize &amp;amp; or tExtractDlimitedFields to resolve your problem. 
&lt;BR /&gt;Provided If you can write code that splits your data column to split in comma-seperated values. 
&lt;BR /&gt;Regards, 
&lt;BR /&gt;Nirav Shah</description>
      <pubDate>Mon, 06 Aug 2012 08:15:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225898#M18008</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-08-06T08:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Split one row into multiple rows, keeping no. of columns same</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225899#M18009</link>
      <description>hi,&lt;BR /&gt;i have a similar problem. Please find the below details and advice the best process.&lt;BR /&gt;&lt;BR /&gt;Source Table:&lt;BR /&gt;SELECT * FROM SRC_1;&lt;BR /&gt;NRI_NUM     SA           MA           OA          SAB     MAB    OAB        &lt;BR /&gt;-----------     -----          -----      -----          ----      ---      ---&lt;BR /&gt;          1       SA123      MA456      OA789     10        20      30&lt;BR /&gt;Target Table Details:&lt;BR /&gt;SELECT * FROM TRG_1;&lt;BR /&gt;NRI_NUM     ACT_NUM    ACT_TYPE   ACT_BAL   &lt;BR /&gt;-----------      ----------    ----------     ----------&lt;BR /&gt;1	  123	     SA	       10&lt;BR /&gt;2	  456	     MA	       20&lt;BR /&gt;3	  789	     OA	       30</description>
      <pubDate>Wed, 05 Dec 2012 07:21:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225899#M18009</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-12-05T07:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: Split one row into multiple rows, keeping no. of columns same</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225900#M18010</link>
      <description>Hi,&lt;BR /&gt;I was able to achive it using tSplitRow component.&lt;BR /&gt;NRI_NUM     ACT_NUM    ACT_TYPE   ACT_BAL&lt;BR /&gt;-----------    ----------      ----------      ----------&lt;BR /&gt;          1        SA            123                 10&lt;BR /&gt;          1        MA            456                 20&lt;BR /&gt;          1        OA            789                 30</description>
      <pubDate>Wed, 05 Dec 2012 09:14:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225900#M18010</guid>
      <dc:creator>_AnonymousUser</dc:creator>
      <dc:date>2012-12-05T09:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: Split one row into multiple rows, keeping no. of columns same</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225901#M18011</link>
      <description>&amp;nbsp;hi, I have source like &amp;nbsp;&lt;BR /&gt;ID,NAME&lt;BR /&gt;1&amp;amp;2,A&amp;amp;B&lt;BR /&gt;3/4,C/D&lt;BR /&gt;5&amp;amp;6,E/F&lt;BR /&gt;In my target the data would be like&lt;BR /&gt;ID,NAME&lt;BR /&gt;1,A&lt;BR /&gt;2,B&lt;BR /&gt;3,C&lt;BR /&gt;4,D&lt;BR /&gt;5,E&lt;BR /&gt;6,F&lt;BR /&gt;How can i achieve this can any one help me&lt;BR /&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;</description>
      <pubDate>Wed, 04 Nov 2015 09:56:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225901#M18011</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T09:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Split one row into multiple rows, keeping no. of columns same</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225902#M18012</link>
      <description>Hi manjunath.m,&lt;BR /&gt;Here is a component &lt;A href="https://help.talend.com/search/all?query=tNormalize&amp;amp;content-lang=en" target="_blank" rel="nofollow noopener noreferrer"&gt;TalendHelpCenter:tNormalize&lt;/A&gt; which normalizes the input flow following SQL standard. &lt;BR /&gt;Best regards&lt;BR /&gt;Sabrina</description>
      <pubDate>Wed, 04 Nov 2015 11:08:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Split-one-row-into-multiple-rows-keeping-no-of-columns-same/m-p/2225902#M18012</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-11-04T11:08:52Z</dc:date>
    </item>
  </channel>
</rss>

