<?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 Load in Talend Studio</title>
    <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232817#M22657</link>
    <description>Hi Joe,
&lt;BR /&gt;I have a doubt what you mean by the previous component in the phrase "TDBInput query like 'select * from &amp;lt;table&amp;gt; where lastUpdateDate =&amp;lt;value from the previous component&amp;gt;.". Can you please elaborate on it</description>
    <pubDate>Thu, 04 Apr 2019 07:53:55 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2019-04-04T07:53:55Z</dc:date>
    <item>
      <title>Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232813#M22653</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;I want to implement an Incremental load in Talend itself. I have gone through some blogs and posts which suggest creating a table in db to store the job name and last run time. I want a solution that handles the incremental loading by capturing the last update date in Talend itself and while executing the job next time it should pick the value and run for the newly updated records. Or any other approach which doesn't&amp;nbsp;include creating a new table for this purpose.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance,&lt;/P&gt;
&lt;P&gt;Sowmiya R&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 06:23:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232813#M22653</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T06:23:14Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232814#M22654</link>
      <description>&lt;P&gt;&lt;A href="https://community.qlik.com/s/profile/0053p000007LP9hAAG"&gt;@sowmi333&lt;/A&gt;&amp;nbsp;,either you should capture &lt;SPAN&gt;the job name and last run time&amp;nbsp;&lt;/SPAN&gt;in database table or file, in talend we can cannot store and which can not able to pick that in the next run.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;check the below link.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://mahadevanrv.blogspot.in/2015/04/talend-incremental-load-using-talend.html" target="_blank" rel="nofollow noopener noreferrer noopener noreferrer"&gt;http://mahadevanrv.blogspot.in/2015/04/talend-incremental-load-using-talend.html&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 06:50:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232814#M22654</guid>
      <dc:creator>manodwhb</dc:creator>
      <dc:date>2019-04-04T06:50:53Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232815#M22655</link>
      <description>&lt;P&gt;Hi Sowmiya,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;The reason for recommending to store the control values in DB is because DBs have better capabilities to recover the data easily in case of a data loss or disaster. Instead of DB, you can store this last run data in a file also. In that case, the onus of maintaining and protecting this data will be on the operational team. What will happen in case the file is accidentally deleted by a user? Your whole process will go for a toss in that case.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &amp;nbsp; End of day, Talend is an ETL tool and it is not a storage medium. So trying to use Talend as the medium to store the control data is not the recommended approach. My personal preference is always to use DB for storing these type of data due to ts capabilities to come out of disaster recovery easily but you can also go by file approach.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt;
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 06:54:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232815#M22655</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T06:54:39Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232816#M22656</link>
      <description>&lt;P&gt;Hi Sowmiya,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you don't want to create any additional table in DB, Every time when you execute the job , you can get max(LastUpdateddate) from the Target table and make it pass in to TDBInput query like 'select * from &amp;lt;table&amp;gt; where lastUpdateDate =&amp;lt;value from the previous component&amp;gt;.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;/P&gt;
&lt;P&gt;Joe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;lt;Give Kudos if you found this tip is useful&amp;gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 07:28:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232816#M22656</guid>
      <dc:creator>joearun4u</dc:creator>
      <dc:date>2019-04-04T07:28:22Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232817#M22657</link>
      <description>Hi Joe,
&lt;BR /&gt;I have a doubt what you mean by the previous component in the phrase "TDBInput query like 'select * from &amp;lt;table&amp;gt; where lastUpdateDate =&amp;lt;value from the previous component&amp;gt;.". Can you please elaborate on it</description>
      <pubDate>Thu, 04 Apr 2019 07:53:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232817#M22657</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T07:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232818#M22658</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; The data is extracted from the DB to a variable in the previous step by&amp;nbsp;&lt;SPAN&gt;max(LastUpdateddate). This will be stored to a context variable (context.last_run).&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;&amp;nbsp; &amp;nbsp; He meant to say, use this value from previous step when you are querying next time.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;'select * from &amp;lt;table&amp;gt; where lastUpdateDate &amp;gt;= context.last_run'&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&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, 04 Apr 2019 08:21:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232818#M22658</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T08:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232819#M22659</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.qlik.com/s/profile/00539000006eKOgAAM"&gt;@nthampi&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;Thanks much for your suggestion. Let me it try out and update you &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks,&lt;/P&gt; 
&lt;P&gt;Sowmiya R&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 09:17:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232819#M22659</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T09:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232820#M22660</link>
      <description>&lt;P&gt;Exactly, I meant the same step as you have explained.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;but here the problem is, if the Target table is huge like 900 M records with 100's of columns, it will take more time to fetch the LastUpdatedDate . Always the better plan is to store the execution time in a Table for fast processing.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks,&lt;/P&gt; 
&lt;P&gt;Joe&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 10:36:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232820#M22660</guid>
      <dc:creator>joearun4u</dc:creator>
      <dc:date>2019-04-04T10:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232821#M22661</link>
      <description>&lt;P&gt;There is another way to get the last execution time OF JOB .one of the way is to use Metaservlet with below command :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;----------------------------------------------------------
  Command: taskLog
----------------------------------------------------------
Description             : Retrieve the logs of the specified task
- lastExecution: true/false(default). Get the lastest execution log or not.
Requires authentication : true
Since                   : 5.1
Sample                  : 
{
  "actionName": "taskLog",
  "authPass": "admin",
  "authUser": "admin@company.com",
  "endTime": "\"2016-03-24 13:00:00\"",
  "lastExecution": false,
  "startTime": "\"2016-03-24 12:00:00\"",
  "taskId": 1
}
Specific error codes    : 
       220: Error happened when reading logs.
       225: Error happened when date range is illegal.
       226: Error appears when parsing the date.
--------------------------------------------------&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 10:43:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232821#M22661</guid>
      <dc:creator>akumar2301</dc:creator>
      <dc:date>2019-04-04T10:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232822#M22662</link>
      <description>&lt;P&gt;Hi &lt;A href="https://community.qlik.com/s/profile/0053p000007LP7CAAW"&gt;@uganesh&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Could you please elaborate on the&amp;nbsp;&lt;SPAN&gt;Metaservlet as I'm&amp;nbsp;new to Talend&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;Sowmiya&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 12:42:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232822#M22662</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T12:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232823#M22663</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/0053p000007LPKQAA4"&gt;@joearun4u&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Yes, as you said I'm having over a million records and When I executed as suggested by you and&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/00539000006eKOgAAM"&gt;@nthampi&lt;/A&gt;&amp;nbsp;I found that new records are getting inserted but I guess if we are running it daily then the approach will work but if we want to run once a month or something like that for eg : last run date is 04-APR-2019 again I will run on 04-MAY-2019 in this case If I take MAX(LAST_UPDATE_DATE) then it takes only the records from the date 04-MAY-2019 leaving behind the records for one month. Did I miss anything Kindly guide further&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks,&lt;/P&gt; 
&lt;P&gt;Sowmiya R&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 12:53:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232823#M22663</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T12:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232824#M22664</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp;Once you execute the data between last run time and current time (during first run), the next step is to capture the current time (I mean the end time of current run) back to the DB.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp;This will be the start date for the next month. In your example,&amp;nbsp;&lt;SPAN&gt;04-APR-2019 was the first time you ran the job. So after job execution, you need to capture this date to the DB. So when the next time in May you are running the job, it will fetch all the records between&amp;nbsp;04-APR-2019 and 01-May-2019.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&lt;SPAN&gt;The key part is to store the date of current run back to DB so that we you are executing next time, it will take the full delta range instead of current date.&lt;/SPAN&gt;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 12:59:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232824#M22664</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T12:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232825#M22665</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.qlik.com/s/profile/00539000006eKOgAAM"&gt;@nthampi&lt;/A&gt;&amp;nbsp;,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;I have done this approach already and working fine but the customer doesn't want to create a new table in DB and want the Talend itself to capture the last run time and pick up the time while executing the next time. SO I'm&amp;nbsp;looking for any other alternative approach that Talend alone can handle&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks,&lt;/P&gt; 
&lt;P&gt;Sowmiya R&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 13:18:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232825#M22665</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T13:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232826#M22666</link>
      <description>&lt;P&gt;Hi Sowmiya,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Definitely It will work..&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;You have to capture the Max(lastUpdateDate) along with time for eg, 04-Mar-2019 12:37:08. Then you have to pass the value to input query as 'select * from &amp;lt;SourceTableName&amp;gt; where lastUpdatedate &lt;STRONG&gt;&amp;gt;&amp;nbsp;&lt;/STRONG&gt; '04-Mar-2019 12:37:08'. So it will fetch all the records which is greater than the given date '04-Mar-2019 12:37:08'.&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Thanks,&lt;/P&gt; 
&lt;P&gt;Joe&lt;/P&gt; 
&lt;P&gt;&amp;lt;Don't forget to give kudos&amp;gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 13:37:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232826#M22666</guid>
      <dc:creator>joearun4u</dc:creator>
      <dc:date>2019-04-04T13:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232827#M22667</link>
      <description>&lt;P&gt;Hi Sowmiya,&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Could you please share what is the compelling reason shared by customer for not using the DB approach? It is quite an established approach used by many enterprise customers throughout the globe.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;So I am really interested to know why the customer is afraid to have a configuration table to handle this data. If customer is looking to store the information inside Talend, we need to educate the customer that Talend is an ETL tool and not a data storage medium.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp;Our Talend community members can definitely shed some light in this area if customer would like to discuss on this part in Talend Community through this post itself.&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; Apart from that, I believe the original question for this post is already covered by the posts. If you are happy with the details provided for using DB in this scenario, could you please mark the topic as resolved by marking all the posts which helped you to arrive at the solution?&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Warm Regards,&lt;BR /&gt;Nikhil Thampi&lt;/P&gt; 
&lt;P&gt;Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 04 Apr 2019 18:48:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232827#M22667</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2019-04-04T18:48:16Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232828#M22668</link>
      <description>&lt;P&gt;hi sowmya,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;can you share the incremental job to me&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Feb 2020 06:05:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232828#M22668</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-02-10T06:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232829#M22669</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt; 
&lt;P&gt;Can you help me create incremental job. I am new to Talend.&lt;/P&gt; 
&lt;P&gt;I am attaching the context variable defined by me at staging level. we have 2 fields updated_at(coming from source system) and Load_at (defined for capturing the data load time) in staging table. I am getting the below error when i run the talend job;&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Null value will be used for context parameter last_run: Unparseable date: " max(load_at)"&lt;BR /&gt;[statistics] connecting to socket on port 3920&lt;BR /&gt;[statistics] connected&lt;BR /&gt;Exception in component tDBInput_1 (job_Staging_000_sylius_Address)&lt;BR /&gt;java.sql.SQLSyntaxErrorException: Unknown column 'context.last_run' in 'where clause'&lt;/P&gt; 
&lt;P&gt;&amp;nbsp;&lt;/P&gt; 
&lt;P&gt;Steps followed by me are as below,&lt;/P&gt; 
&lt;P&gt;1. create a context variable in job.&lt;/P&gt; 
&lt;P&gt;2. Use this context variable in DB input query as attached&lt;/P&gt; 
&lt;P&gt;3. run the job.&lt;/P&gt; 
&lt;P&gt;what is issue in this design? i am not creating any DB table to store this value.&lt;/P&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009Ly4d"&gt;DB_input.png&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://community.qlik.com/legacyfs/online/tlnd_dw_files/0683p000009LyKq"&gt;incremental_context.png&lt;/A&gt;</description>
      <pubDate>Fri, 17 Apr 2020 14:51:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232829#M22669</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2020-04-17T14:51:11Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232830#M22670</link>
      <description>&lt;P&gt;Hi Sowmiya, Can you please share your job design and screenshot of your context variable defination. I have a same scenario. My source is like MySQL DB and Target is Redshift DB.&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 11:57:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232830#M22670</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2020-04-20T11:57:33Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232831#M22671</link>
      <description>&lt;A href="https://community.qlik.com/s/profile/0053p000007LKmJAAW"&gt;@manodwhb&lt;/A&gt;: can you please share your job design and screenshot of your context variable defination. I have a similar scenario. My source is MySQL Db and target is Redshift DB.</description>
      <pubDate>Mon, 20 Apr 2020 11:59:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232831#M22671</guid>
      <dc:creator>sushantk19</dc:creator>
      <dc:date>2020-04-20T11:59:41Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load</title>
      <link>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232832#M22672</link>
      <description>&lt;P&gt;context variables are passed this way&lt;/P&gt; 
&lt;P&gt;"select * from sylius_address where updated_at&amp;gt; "+context.lastrun+"";&lt;/P&gt;</description>
      <pubDate>Mon, 20 Apr 2020 17:53:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Talend-Studio/Incremental-Load/m-p/2232832#M22672</guid>
      <dc:creator>Vijay_K_N</dc:creator>
      <dc:date>2020-04-20T17:53:28Z</dc:date>
    </item>
  </channel>
</rss>

