<?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: Incremental Job in talend using sql in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205384#M5873</link>
    <description>Dear,&lt;BR /&gt;&lt;BR /&gt;On daily basis that query will run and will pull the records incrementally , 1st run will pull entire data set and from next day it will pull records incrementally based on date ,&lt;BR /&gt;&lt;BR /&gt;Please let me know steps how shall implement this CDC logic&lt;BR /&gt;</description>
    <pubDate>Fri, 14 Apr 2017 10:06:28 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2017-04-14T10:06:28Z</dc:date>
    <item>
      <title>Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205376#M5865</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;I want to implement &amp;nbsp;a incremental job ,&lt;BR /&gt;i want to incrementally pull data from the below query :-&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select distinct &amp;nbsp;ID from schema_name.table_name where ID like ‘11%’&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have never used incremental load &amp;nbsp;in talend .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can you give me steps to build one job ?&lt;BR /&gt;Many Thanks,&lt;BR /&gt;Amit&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2017 04:45:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205376#M5865</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-14T04:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205377#M5866</link>
      <description>&lt;P&gt;can anyone help? i am using teradata as DB and want to pull records incrementally for this query , we have load_date as one column&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2017 06:38:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205377#M5866</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-14T06:38:27Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205378#M5867</link>
      <description>If you want to get IDs from "1%" to "99%" add a tLoop before tTeradataInput and change the select like this:&lt;BR /&gt;"Select ID from schema_name.table_name where ID like '"+((Integer)globalMap.get("tLoop_1_CURRENT_VALUE"))+"%'"&lt;BR /&gt;&lt;BR /&gt;You may also explain the reason why you want to proceed incrementaly for better proposal.</description>
      <pubDate>Fri, 14 Apr 2017 07:01:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205378#M5867</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-04-14T07:01:43Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205379#M5868</link>
      <description>&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;We have a date field , and daily this will run , so i want to pull only current days id's not all id's.&lt;/P&gt;&lt;P&gt;we have to build a CDC (incrementally)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Can u help in this ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Apr 2017 07:57:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205379#M5868</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-14T07:57:07Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205380#M5869</link>
      <description>Your 1st question wasn't the same or wasn't clear.&lt;BR /&gt;Try this:&lt;BR /&gt;Select ID from myTable where myDate &amp;gt; current_date&lt;BR /&gt;Check the syntax for teradata SQL query.</description>
      <pubDate>Fri, 14 Apr 2017 08:46:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205380#M5869</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-04-14T08:46:36Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205381#M5870</link>
      <description>Maybe "&amp;gt;= current_date"</description>
      <pubDate>Fri, 14 Apr 2017 08:48:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205381#M5870</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-04-14T08:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205382#M5871</link>
      <description>Dear ,&lt;BR /&gt;&lt;BR /&gt;Thanks , but first time it will be full load then it will be incremental load , will this logic work in this scenario? will i have to store the max date and then compare it with current date or something like that ?&lt;BR /&gt;can you let me know steps for the job ?&lt;BR /&gt;&lt;BR /&gt;Many Thanks...&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Apr 2017 09:30:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205382#M5871</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-14T09:30:24Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205383#M5872</link>
      <description>Sure in this case you need to have a logic as you suggest, store the last queried date and if it doesn't exists start with a date such as 1900-01-01 to retrieve all the records. 
&lt;BR /&gt;One more time, try to explain your case completly at the 1st question to avoid bad answers.</description>
      <pubDate>Fri, 14 Apr 2017 09:37:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205383#M5872</guid>
      <dc:creator>TRF</dc:creator>
      <dc:date>2017-04-14T09:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205384#M5873</link>
      <description>Dear,&lt;BR /&gt;&lt;BR /&gt;On daily basis that query will run and will pull the records incrementally , 1st run will pull entire data set and from next day it will pull records incrementally based on date ,&lt;BR /&gt;&lt;BR /&gt;Please let me know steps how shall implement this CDC logic&lt;BR /&gt;</description>
      <pubDate>Fri, 14 Apr 2017 10:06:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205384#M5873</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-04-14T10:06:28Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Job in talend using sql</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205385#M5874</link>
      <description>To load records created since the last load, you need to store the last run time somewhere. You can write it to a file or to a database. At the start of your load job, read in the value from where you stored it, assign it to a variable (replacing a null value as TRF suggests), then use that variable in your query. After the load is complete, you write the current timestamp to your data store for the next run.&lt;BR /&gt;&lt;BR /&gt;The first time it runs, you won't have a value, so you'll replace it with 1900-01-01 which should retrieve all records. Subsequent runs will use the timestamp you store instead of 1900-01-01.</description>
      <pubDate>Fri, 14 Apr 2017 15:29:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Job-in-talend-using-sql/m-p/2205385#M5874</guid>
      <dc:creator>cterenzi</dc:creator>
      <dc:date>2017-04-14T15:29:51Z</dc:date>
    </item>
  </channel>
</rss>

