<?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 Append Unique Duplicates with sequence Numbers in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Append-Unique-Duplicates-with-sequence-Numbers/m-p/2211409#M9444</link>
    <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i have problem with duplicate data but there'a a way to avoid this duplicated. by add new sequence data for each data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;example :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i need.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Name_IncrementalSequence&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA_1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA_2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DD&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DD_1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How could i proceed? Please help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Sat, 16 Nov 2024 03:51:26 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2024-11-16T03:51:26Z</dc:date>
    <item>
      <title>Append Unique Duplicates with sequence Numbers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Append-Unique-Duplicates-with-sequence-Numbers/m-p/2211409#M9444</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i have problem with duplicate data but there'a a way to avoid this duplicated. by add new sequence data for each data.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;example :&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Name&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DD&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i need.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Name_IncrementalSequence&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA_1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;AA_2&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;BB&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;CC&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DD&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;DD_1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;How could i proceed? Please help.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 03:51:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Append-Unique-Duplicates-with-sequence-Numbers/m-p/2211409#M9444</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T03:51:26Z</dc:date>
    </item>
    <item>
      <title>Re: Append Unique Duplicates with sequence Numbers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Append-Unique-Duplicates-with-sequence-Numbers/m-p/2211410#M9445</link>
      <description>You can archive this with tMap.
&lt;BR /&gt;Define a tMap local variable called ind (or anything else) of type int with the following expression:
&lt;BR /&gt;Numeric.sequence(row1.name,0,1)
&lt;BR /&gt;A New sequence will be created for each distinct name with a starting value of 0.
&lt;BR /&gt;On the tMap output flow, use the following expression for name:
&lt;BR /&gt;Var.ind &amp;gt; 0 ? row1.name + "_" + Var.ind : row1.name
&lt;BR /&gt;Not tested but should work</description>
      <pubDate>Thu, 12 Dec 2019 06:48:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Append-Unique-Duplicates-with-sequence-Numbers/m-p/2211410#M9445</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2019-12-12T06:48:39Z</dc:date>
    </item>
    <item>
      <title>Re: Append Unique Duplicates with sequence Numbers</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Append-Unique-Duplicates-with-sequence-Numbers/m-p/2211411#M9446</link>
      <description>Did this help?&lt;BR /&gt;If so, thanks to mark your case as solved (Kudos also very appreciated).</description>
      <pubDate>Sun, 15 Dec 2019 10:24:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Append-Unique-Duplicates-with-sequence-Numbers/m-p/2211411#M9446</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2019-12-15T10:24:36Z</dc:date>
    </item>
  </channel>
</rss>

