<?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: scanario in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360195#M124828</link>
    <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Above logic can be achieve using tloop components?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;shree&lt;/P&gt;</description>
    <pubDate>Thu, 28 Sep 2017 08:30:13 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-09-28T08:30:13Z</dc:date>
    <item>
      <title>scanario</title>
      <link>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360194#M124827</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Any one could please help me on below scenario its urgent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have two tables, need to compare the columns( dates values) &amp;nbsp;between two tables.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Table1: select max(Date_col) from tbl1&lt;/P&gt;
&lt;P&gt;2) Table2: select max(Date_col) from tbl2;&lt;/P&gt;
&lt;P&gt;3) compression between two tables&lt;/P&gt;
&lt;P&gt;step 1: &amp;nbsp;if tbl1.date_col == tbl2.date_col found then&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; run subjob2&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; jump step 3&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;else&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if not found&amp;nbsp;&amp;nbsp;(tbl1.date_col &amp;lt;&amp;gt; &amp;nbsp;tbl2.date_col&amp;nbsp;)&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Go to step 1: every 15min check&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; infinity loop.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;step 3: exit&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;shree&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2017 07:31:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360194#M124827</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-28T07:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: scanario</title>
      <link>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360195#M124828</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Above logic can be achieve using tloop components?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;shree&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2017 08:30:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360195#M124828</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-28T08:30:13Z</dc:date>
    </item>
    <item>
      <title>Re: scanario</title>
      <link>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360196#M124829</link>
      <description>&lt;P&gt;Hi ,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;You can achieve by using tInfiniteLoop component to iterate you subjob which will check &amp;nbsp;&lt;SPAN&gt;tbl1.date_col == tbl2.date_col.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Wait time has to be provided in milliseconds.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;tloop component is used to loop for finite number of iterations.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;I would suggest to loop job using cron if you are using open source version and you can use TAC for enterprise&amp;nbsp;version rather than tInfiniteLoop&amp;nbsp;component &amp;nbsp;if you are delivering project to client . Because to stop or change execution frequency you have to modify job which is not good practice.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;Don't forget to give kudos when a reply is helpful and click Accept the solution when you think you're good with it.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2017 10:24:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360196#M124829</guid>
      <dc:creator>shivanand</dc:creator>
      <dc:date>2017-09-28T10:24:26Z</dc:date>
    </item>
    <item>
      <title>Re: scanario</title>
      <link>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360197#M124830</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your inputs.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;We are using talend open studio in window system. &amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you tell me some flow how to design?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Shree&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2017 12:10:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360197#M124830</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-09-28T12:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: scanario</title>
      <link>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360198#M124831</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;You can go through following link to check scheduling on windows&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://etladvisors.com/2014/05/06/windows-deployment-and-scheduling-of-talend-jobs/" target="_blank" rel="nofollow noopener noreferrer"&gt;http://etladvisors.com/2014/05/06/windows-deployment-and-scheduling-of-talend-jobs/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Don't forget to give kudos when a reply is helpful and click Accept the solution when you think you're good with it.&lt;/P&gt;</description>
      <pubDate>Thu, 28 Sep 2017 12:48:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360198#M124831</guid>
      <dc:creator>shivanand</dc:creator>
      <dc:date>2017-09-28T12:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: scanario</title>
      <link>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360199#M124832</link>
      <description>&lt;P&gt;Thanks for your time and inputs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Fine, i am going to use window scheduler for scheduling the jobs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Could you please&amp;nbsp;tell me the design point of view &amp;nbsp;and scheduler? whether i need to create separate jobs? It's urgent.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Table1: select max(Date_col) from tbl1&lt;BR /&gt;2) Table2: select max(Date_col) from tbl2;&lt;BR /&gt;3) compression between two tables&lt;BR /&gt;step 1: if tbl1.date_col == tbl2.date_col found then&lt;BR /&gt;run subjob2&lt;BR /&gt;jump step 3&lt;BR /&gt;else&lt;BR /&gt;if not found (tbl1.date_col &amp;lt;&amp;gt; tbl2.date_col )&lt;BR /&gt;Go to step 1: every 15min check&lt;BR /&gt;infinity loop.&lt;BR /&gt;step 3: exit&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks&lt;/P&gt;
&lt;P&gt;Shree&lt;/P&gt;</description>
      <pubDate>Tue, 03 Oct 2017 06:32:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/scanario/m-p/2360199#M124832</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-10-03T06:32:56Z</dc:date>
    </item>
  </channel>
</rss>

