<?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 BUFFER (Incremental) in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201493#M714791</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post an example? As from the OL-Help incremental-option can only be used for text-files, but then it should work.&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Sep 2009 14:59:11 GMT</pubDate>
    <dc:creator>prieper</dc:creator>
    <dc:date>2009-09-29T14:59:11Z</dc:date>
    <item>
      <title>BUFFER (Incremental)</title>
      <link>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201492#M714790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to get a quicker load and found the BUFFER (Incremental) prefix in the online help:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"All records loaded at a previous occasion are read from the QVD file whereas the following new records are read from the original source and finally an updated QVD-file is created."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I understand it right, it should first time load normally and save a QVD-file. And next reload will read from the QVD-file and new records are automatically read from the original source. But for me it doesn't work. Subsequent reloads reads from the QVD-file, but the new records are not read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do I misunderstand the help? Or does this work for you?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 03:59:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201492#M714790</guid>
      <dc:creator />
      <dc:date>2009-09-29T03:59:50Z</dc:date>
    </item>
    <item>
      <title>BUFFER (Incremental)</title>
      <link>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201493#M714791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you post an example? As from the OL-Help incremental-option can only be used for text-files, but then it should work.&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 14:59:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201493#M714791</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2009-09-29T14:59:11Z</dc:date>
    </item>
    <item>
      <title>BUFFER (Incremental)</title>
      <link>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201494#M714792</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have inserted an example in a pdf-file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;[View:http://community.qlik.com/cfs-file.ashx/__key/CommunityServer.Discussions.Components.Files/11/0576.QlikView-Script-Printing.pdf:550:0]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 18:11:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201494#M714792</guid>
      <dc:creator />
      <dc:date>2009-09-29T18:11:36Z</dc:date>
    </item>
    <item>
      <title>BUFFER (Incremental)</title>
      <link>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201495#M714793</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hans,&lt;/P&gt;&lt;P&gt;The incremental approach is bit tricky kere. This is applicable only for sequential sorage (like text files). If you are planning to pull from RDBMS using SQL (where insert/update/delete can happen randomly), you need to apply some extra logic.&lt;/P&gt;&lt;P&gt;1. Get the last updated date (D1) from QVD file.&lt;/P&gt;&lt;P&gt;2. Read records from source where date update is &amp;gt;=D1 and &amp;lt;=current date&lt;/P&gt;&lt;P&gt;3. Concatenate the records from existing QVD where the key field(s) not exist in the source.&lt;/P&gt;&lt;P&gt;Note, your soure should have proper audit of updates to do thsi successfully.&lt;/P&gt;&lt;P&gt;-Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 18:33:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201495#M714793</guid>
      <dc:creator />
      <dc:date>2009-09-29T18:33:50Z</dc:date>
    </item>
    <item>
      <title>BUFFER (Incremental)</title>
      <link>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201496#M714794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Arun,&lt;/P&gt;&lt;P&gt;Oh, I understood from the manual, that QlikView did this itself.&lt;/P&gt;&lt;P&gt;Thank you for the information &lt;span class="lia-unicode-emoji" title=":monkey_face:"&gt;🐵&lt;/span&gt; I will try your extra logic.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Sep 2009 19:41:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201496#M714794</guid>
      <dc:creator />
      <dc:date>2009-09-29T19:41:35Z</dc:date>
    </item>
    <item>
      <title>Re: BUFFER (Incremental)</title>
      <link>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201497#M714795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please give any document.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2012 16:34:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201497#M714795</guid>
      <dc:creator />
      <dc:date>2012-12-24T16:34:37Z</dc:date>
    </item>
    <item>
      <title>Re: BUFFER (Incremental)</title>
      <link>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201498#M714796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Hope these Documents will help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Dec 2012 05:44:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/BUFFER-Incremental/m-p/201498#M714796</guid>
      <dc:creator />
      <dc:date>2012-12-25T05:44:18Z</dc:date>
    </item>
  </channel>
</rss>

