<?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 using where clause in Qlik Automate</title>
    <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512971#M5730</link>
    <description>&lt;P&gt;Thank you for sharing the solution&lt;/P&gt;</description>
    <pubDate>Thu, 03 Apr 2025 13:11:10 GMT</pubDate>
    <dc:creator>Vikash2024</dc:creator>
    <dc:date>2025-04-03T13:11:10Z</dc:date>
    <item>
      <title>Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512890#M5720</link>
      <description>&lt;P&gt;Suppose I have a employee data. First I generate the QVD's. When i start to perform incremental load on QVD's using API's so i want only change data add in the QVD based on employee ID.&lt;BR /&gt;How to solve this problem?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 08:26:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512890#M5720</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-04-03T08:26:18Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512894#M5721</link>
      <description>&lt;P&gt;Do we have any date field which tell us that there is change in this record??&lt;/P&gt;&lt;P&gt;if yes then use that field to do increment + update load.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prashant Sangle&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 08:51:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512894#M5721</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2025-04-03T08:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512904#M5722</link>
      <description>&lt;P class=""&gt;Hi&amp;nbsp;&lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305461"&gt;@Vikash2024&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;Try as like below.&lt;/P&gt;&lt;P&gt;QV_Table:&lt;/P&gt;&lt;P&gt;SQL SELECT Emp_ID, X, Y FROM DB_TABLE&lt;/P&gt;&lt;P&gt;WHERE ModificationTime &amp;gt;= #$(LastExecTime)#&lt;/P&gt;&lt;P&gt;AND ModificationTime &amp;lt; #$(ThisExecTime)#;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Concatenate LOAD Emp_ID, X, Y FROM File.QVD&lt;/P&gt;&lt;P&gt;WHERE NOT EXISTS(Emp_ID);&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Inner Join SQL SELECT Emp_ID FROM DB_TABLE;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 09:26:54 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512904#M5722</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2025-04-03T09:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512913#M5723</link>
      <description>&lt;P&gt;No there is no date field based on ID i need to capture the change and update according to that.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 10:13:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512913#M5723</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-04-03T10:13:52Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512914#M5724</link>
      <description>&lt;P&gt;Thank you for the solution. But in the table i don't have date and time column.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 10:14:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512914#M5724</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-04-03T10:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512920#M5727</link>
      <description>&lt;P&gt;If you don't have date time field then it is difficult to build incremental logic.&lt;/P&gt;&lt;P&gt;Do you have any indicator field which suggest that this column is updated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant Sangle&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 10:38:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512920#M5727</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2025-04-03T10:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512922#M5729</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.qlik.com/t5/user/viewprofilepage/user-id/305461"&gt;@Vikash2024&lt;/a&gt;&amp;nbsp;, Try this&lt;/P&gt;&lt;P&gt;IF isnull(QvdCreateTime('Incremental_Table.qvd')) then&lt;/P&gt;&lt;P&gt;Incremental_Table:&lt;BR /&gt;LOAD * INLINE [Emp_ID, Emp_NAME];&lt;BR /&gt;&lt;BR /&gt;LET vMaxID = 0;&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;Incremental_Table:&lt;BR /&gt;LOAD&lt;BR /&gt;Emp_ID,&lt;BR /&gt;Emp_NAME&lt;BR /&gt;from&lt;BR /&gt;IncrementalTable.qvd (qvd);&lt;/P&gt;&lt;P&gt;MAXID:&lt;BR /&gt;LOAD Max(Emp_ID) as maxID RESIDENT Incremental_Table;&lt;BR /&gt;LET vMaxID = peek('maxID', -1,'MAXID');&lt;BR /&gt;END IF&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;CONCATENATE (Incremental_Table) LOAD&lt;BR /&gt;Emp_ID,&lt;BR /&gt;Emp_NAME&lt;BR /&gt;from&lt;BR /&gt;SOURCE&lt;BR /&gt;WHERE Emp_ID &amp;gt; $(vMaxID);&lt;/P&gt;&lt;P&gt;STORE Incremental_Table into Incremental_Table.qvd (qvd);&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 10:49:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512922#M5729</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2025-04-03T10:49:16Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512971#M5730</link>
      <description>&lt;P&gt;Thank you for sharing the solution&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 13:11:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512971#M5730</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-04-03T13:11:10Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512972#M5731</link>
      <description>&lt;P&gt;Id column which can be use.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Apr 2025 13:11:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2512972#M5731</guid>
      <dc:creator>Vikash2024</dc:creator>
      <dc:date>2025-04-03T13:11:41Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load using where clause</title>
      <link>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2513083#M5733</link>
      <description>&lt;P&gt;Try with your Emp_ID.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Apr 2025 03:47:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Qlik-Automate/Incremental-Load-using-where-clause/m-p/2513083#M5733</guid>
      <dc:creator>krishna20</dc:creator>
      <dc:date>2025-04-04T03:47:46Z</dc:date>
    </item>
  </channel>
</rss>

