<?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: How to send data one after another to three tables in cyclic order in talend? in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/How-to-send-data-one-after-another-to-three-tables-in-cyclic/m-p/2331676#M100632</link>
    <description>&lt;P&gt;Forgot this post.&lt;/P&gt;</description>
    <pubDate>Wed, 15 Nov 2017 14:21:55 GMT</pubDate>
    <dc:creator>TRF</dc:creator>
    <dc:date>2017-11-15T14:21:55Z</dc:date>
    <item>
      <title>How to send data one after another to three tables in cyclic order in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-send-data-one-after-another-to-three-tables-in-cyclic/m-p/2331674#M100630</link>
      <description>&lt;P&gt;&lt;SPAN&gt;I have one source table,the data in source table is like,&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture1.JPG" style="width: 198px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LreR.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/149415i76DBD3B7825B168C/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LreR.jpg" alt="0683p000009LreR.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;I have 3 target tables T1,T2 and T3. I want the output as follows,&lt;/P&gt; 
&lt;P&gt;The data in T1 should be,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture2.JPG" style="width: 152px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lrfh.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/145029iC5AA3D63A5C4EDA9/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lrfh.jpg" alt="0683p000009Lrfh.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;The data in T2 should be,&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture3.JPG" style="width: 153px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009Lrvt.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/130832iC25146916F486500/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009Lrvt.jpg" alt="0683p000009Lrvt.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;The data in T3 should be,&lt;/P&gt; 
&lt;P&gt;&lt;SPAN class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture4.JPG" style="width: 155px;"&gt;&lt;span class="lia-inline-image-display-wrapper" image-alt="0683p000009LrvQ.jpg"&gt;&lt;img src="https://community.qlik.com/t5/image/serverpage/image-id/131241i3A0C69846D3C41EE/image-size/large?v=v2&amp;amp;px=999" role="button" title="0683p000009LrvQ.jpg" alt="0683p000009LrvQ.jpg" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;How an i Achieve that in talend?&lt;/P&gt; 
&lt;P&gt;Note: I am using Mysql database.&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 09:03:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-send-data-one-after-another-to-three-tables-in-cyclic/m-p/2331674#M100630</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2024-11-16T09:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to send data one after another to three tables in cyclic order in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-send-data-one-after-another-to-three-tables-in-cyclic/m-p/2331675#M100631</link>
      <description>&lt;P&gt;Connect your data to a tMap with 3 outputs. Create an integer tMap variable with a sequence generator....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;PRE&gt;routines.Numeric.sequence("seq", 1, 1)&lt;/PRE&gt; 
&lt;P&gt;In each of your outputs use a filter with following logic....&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Table1&lt;/P&gt; 
&lt;PRE&gt;Var.seq%3==1&lt;/PRE&gt; 
&lt;P&gt;Table2&lt;/P&gt; 
&lt;PRE&gt;Var.seq%3==2&lt;/PRE&gt; 
&lt;P&gt;Table3&lt;/P&gt; 
&lt;PRE&gt;Var.seq%3==0&lt;/PRE&gt; 
&lt;P&gt;This is using a modulus operator which will return 1 when a number is&amp;nbsp;not divisible by 3 and has a remainder of 1, 2 when a number is not divisible by 3 and has a remainder of 2 and 0 when the number is divisible by 3. This will allow you to cycle your outputs as you wish&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 14:17:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-send-data-one-after-another-to-three-tables-in-cyclic/m-p/2331675#M100631</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-11-15T14:17:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to send data one after another to three tables in cyclic order in talend?</title>
      <link>https://community.qlik.com/t5/Talend-Studio/How-to-send-data-one-after-another-to-three-tables-in-cyclic/m-p/2331676#M100632</link>
      <description>&lt;P&gt;Forgot this post.&lt;/P&gt;</description>
      <pubDate>Wed, 15 Nov 2017 14:21:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/How-to-send-data-one-after-another-to-three-tables-in-cyclic/m-p/2331676#M100632</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-11-15T14:21:55Z</dc:date>
    </item>
  </channel>
</rss>

