<?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 Qlik Sense in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Incremental-Load-in-Qlik-Sense/m-p/1537362#M38772</link>
    <description>&lt;P&gt;Usually this is done with some variation of this:&lt;/P&gt;&lt;P&gt;1. Load all the data from the last-30-days feed&lt;/P&gt;&lt;P&gt;2. Load only the data from the historical qvd with dates that aren't already loaded in step 1&lt;/P&gt;&lt;P&gt;3. Store the complete set from step 1 and 2 into the historical qvd.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Data:
LOAD 
    ...some fields...,
    DateField,
    ...some more fields...
FROM
    ...last_30_days_source...;

CONCATENATE (Data)

LOAD 
    * 
FROM
     [LIB://QVDStore\HistoricalQVD.qvd] (qvd)
WHERE
    NOT Exists(DateField)
    ;


STORE Data INTO [LIB://QVDStore\HistoricalQVD.qvd] (qvd);&lt;/PRE&gt;</description>
    <pubDate>Wed, 30 Jan 2019 17:14:44 GMT</pubDate>
    <dc:creator>Gysbert_Wassenaar</dc:creator>
    <dc:date>2019-01-30T17:14:44Z</dc:date>
    <item>
      <title>Incremental Load in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-in-Qlik-Sense/m-p/1537358#M38771</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;We have a "last 30-days" API feed that comes in daily.The historical data would be loaded into a QVD as a one-time activity and we get "last 30 days" feed every day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;On Jan 27th,2019 the API feed&amp;nbsp;would give us data for the time period&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Dec 28th,2018 to Jan 27th,2019&lt;/STRONG&gt;&lt;SPAN&gt;.On Jan 28th,it would be&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Dec 29th to Jan 28th&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;SPAN&gt;data.How do we make sure we are not missing out on&lt;/SPAN&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Dec 28th&amp;nbsp;&lt;/STRONG&gt;&lt;SPAN&gt;data and that we are permanently storing the preceding day's data(28th Dec in this case) along with the historical data and current data at one place?Let us assume&amp;nbsp;that the historical data is available from Jan 1,2016 to Dec 27th,2018 for time being.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Any help would be greatly appreciated!&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>Wed, 30 Jan 2019 17:07:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-in-Qlik-Sense/m-p/1537358#M38771</guid>
      <dc:creator>jhstrange</dc:creator>
      <dc:date>2019-01-30T17:07:16Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental Load in Qlik Sense</title>
      <link>https://community.qlik.com/t5/App-Development/Incremental-Load-in-Qlik-Sense/m-p/1537362#M38772</link>
      <description>&lt;P&gt;Usually this is done with some variation of this:&lt;/P&gt;&lt;P&gt;1. Load all the data from the last-30-days feed&lt;/P&gt;&lt;P&gt;2. Load only the data from the historical qvd with dates that aren't already loaded in step 1&lt;/P&gt;&lt;P&gt;3. Store the complete set from step 1 and 2 into the historical qvd.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Data:
LOAD 
    ...some fields...,
    DateField,
    ...some more fields...
FROM
    ...last_30_days_source...;

CONCATENATE (Data)

LOAD 
    * 
FROM
     [LIB://QVDStore\HistoricalQVD.qvd] (qvd)
WHERE
    NOT Exists(DateField)
    ;


STORE Data INTO [LIB://QVDStore\HistoricalQVD.qvd] (qvd);&lt;/PRE&gt;</description>
      <pubDate>Wed, 30 Jan 2019 17:14:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Incremental-Load-in-Qlik-Sense/m-p/1537362#M38772</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2019-01-30T17:14:44Z</dc:date>
    </item>
  </channel>
</rss>

