<?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: Find Modified records in Incremental load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000343#M944455</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you know someone modified some records?&lt;/P&gt;&lt;P&gt;Use the same logic in the Qlik script to check for modified records; usually there is in the source table a timestamp, date or counter to detect record changed: you store the last change in Qlik and, at the next reload, you check the timestamp, date or counter bigger than the stored one. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 30 Dec 2015 07:04:21 GMT</pubDate>
    <dc:creator>maxgro</dc:creator>
    <dc:date>2015-12-30T07:04:21Z</dc:date>
    <item>
      <title>Find Modified records in Incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000340#M944452</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have implemented Incremental load, it's working properly.&lt;/P&gt;&lt;P&gt;New records and Deleted records working perfect....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, I have one base table, someone modified some records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to find modified records???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2015 06:23:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000340#M944452</guid>
      <dc:creator>paulwalker</dc:creator>
      <dc:date>2015-12-30T06:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: Find Modified records in Incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000341#M944453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have any field containing timestamp in your table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2015 06:29:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000341#M944453</guid>
      <dc:creator>senpradip007</dc:creator>
      <dc:date>2015-12-30T06:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: Find Modified records in Incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000342#M944454</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically you have to check if the updated timestamp in db is greater that the last execution time. The following script would help you deal&lt;STRONG&gt; Insert and Update&lt;/STRONG&gt; case :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;QV_Table:&lt;/P&gt;
&lt;P&gt;SQL SELECT PrimaryKey, X, Y FROM DB_TABLE&lt;/P&gt;
&lt;P&gt;WHERE &lt;STRONG&gt;ModificationTime&lt;/STRONG&gt; &amp;gt;= #$(&lt;STRONG&gt;LastExecTime&lt;/STRONG&gt;)#;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Concatenate LOAD PrimaryKey, X, Y FROM File.QVD&lt;/P&gt;
&lt;P&gt;WHERE NOT Exists(PrimaryKey);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;STORE QV_Table INTO File.QVD;&lt;/P&gt;

&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt; For better understanding, refer help/manual.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2015 06:35:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000342#M944454</guid>
      <dc:creator>tresB</dc:creator>
      <dc:date>2015-12-30T06:35:16Z</dc:date>
    </item>
    <item>
      <title>Re: Find Modified records in Incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000343#M944455</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do you know someone modified some records?&lt;/P&gt;&lt;P&gt;Use the same logic in the Qlik script to check for modified records; usually there is in the source table a timestamp, date or counter to detect record changed: you store the last change in Qlik and, at the next reload, you check the timestamp, date or counter bigger than the stored one. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Dec 2015 07:04:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Find-Modified-records-in-Incremental-load/m-p/1000343#M944455</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2015-12-30T07:04:21Z</dc:date>
    </item>
  </channel>
</rss>

