<?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 reload and store into QVD file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337834#M494841</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried both scripts as mentioned above, but got the same error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Error in expression:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;')' expected&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CONCATENATE (GA_DATA) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PK, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendardate, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Revenue &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;C&gt; &lt;/C&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sheet1) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;WHERE (Calendardate &amp;gt; 7-5-2013 18:37:59)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May I know how to solve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 May 2013 10:40:53 GMT</pubDate>
    <dc:creator />
    <dc:date>2013-05-07T10:40:53Z</dc:date>
    <item>
      <title>Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337827#M494834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find out how incremental reload and storing into a QVD file works, I made an example document (find it attached).&lt;/P&gt;&lt;P&gt;It works fine, but the exact way it works is unclear to me. Maybe one of you can help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets assume that there is a lot data in the database I would like to load. Because of that, I would like to load the data once. After that, only new rows will be inserted into the QVD file. But, ss this the way my example works? It seems to me, that all the data will be load during a reload of the document, and not only new rows will be inserted but a whole new load will be stored into the QVD. Is that right? If so, how can I make it work so that only new rows will be inserted?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope someone can explain the me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Henco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 08:53:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337827#M494834</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-06T08:53:30Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337828#M494835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use this script&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET lastReloadTime = ReloadTime();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GA_DATA:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PK,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendardate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Revenue&lt;/P&gt;&lt;P&gt;FROM &lt;C&gt; (qvd);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE &lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PK,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendardate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Revenue&lt;/P&gt;&lt;P&gt;FROM &lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;WHERE (Calendardate &amp;gt; $(lastReloadTime));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store GA_DATA into &lt;C&gt;;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 09:07:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337828#M494835</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-03-06T09:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337829#M494836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Henco,&lt;/P&gt;&lt;P&gt;please see also QV Help:&amp;nbsp; &lt;SPAN style="font-size: 10pt;"&gt;Using QVD Files for &lt;SPAN style="background-color: #3399ff; color: #ffffff;"&gt;Incremental&lt;/SPAN&gt; Load&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Good Luck!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Rainer&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 09:12:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337829#M494836</guid>
      <dc:creator />
      <dc:date>2012-03-06T09:12:33Z</dc:date>
    </item>
    <item>
      <title>Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337830#M494837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this URL&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://community.qlik.com/message/68515#68515"&gt;http://community.qlik.com/message/68515#68515&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 09:13:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337830#M494837</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-03-06T09:13:01Z</dc:date>
    </item>
    <item>
      <title>Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337831#M494838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your quick reply. I think I understand what you mean and that will be helpful. &lt;/P&gt;&lt;P&gt;There is one thing I am worried about. At first the document loads the data from the database, to store it into the QVD file:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:&lt;/P&gt;&lt;P&gt;LOAD PK, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendardate, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Revenue&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store DATA into &lt;C&gt;;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens when I reload the document? Is it going to do a full reload and store all the data into the qvd file? Because that is exactly something I want to avoid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I read the other question you linked to, but to sure I ask this question.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Henco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 09:16:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337831#M494838</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-06T09:16:42Z</dc:date>
    </item>
    <item>
      <title>Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337832#M494839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to check whether QVD exists, if QVD exists then load from QVD, otherwise load data from Datasource.&lt;/P&gt;&lt;P&gt;You need to restrict Full reload by this way.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LET lastReloadTime = ReloadTime();&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="min-height: 8pt; height: 8pt;"&gt;If qvdcreatetime("QVDFilePath") Then &lt;/P&gt;&lt;P&gt;GA_DATA:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PK,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendardate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Revenue&lt;/P&gt;&lt;P&gt;FROM &lt;C&gt; (qvd);&lt;/C&gt;&lt;/P&gt;&lt;P&gt;ELSE&lt;/P&gt;&lt;P&gt;GA_DATA:&lt;/P&gt;&lt;P&gt;LOAD PK, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendardate, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Revenue&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1);&lt;/P&gt;&lt;P&gt;END IF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE (GA_DATA)&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PK,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendardate,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Revenue&lt;/P&gt;&lt;P&gt;FROM &lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is Sheet1)&lt;/P&gt;&lt;P&gt;WHERE (Calendardate &amp;gt; $(lastReloadTime));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store GA_DATA into &lt;C&gt;;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 10:11:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337832#M494839</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2012-03-06T10:11:30Z</dc:date>
    </item>
    <item>
      <title>Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337833#M494840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks again Jagan! This will really help me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Henco&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Mar 2012 10:13:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337833#M494840</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-03-06T10:13:38Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337834#M494841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Jagan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried both scripts as mentioned above, but got the same error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Error in expression:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;')' expected&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CONCATENATE (GA_DATA) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; PK, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Calendardate, &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Revenue &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FROM &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;C&gt; &lt;/C&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(ooxml, embedded labels, table is Sheet1) &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;WHERE (Calendardate &amp;gt; 7-5-2013 18:37:59)&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;May I know how to solve this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 May 2013 10:40:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337834#M494841</guid>
      <dc:creator />
      <dc:date>2013-05-07T10:40:53Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337835#M494842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I´ve been gettin the same error, I apparently solved it by replacing the let sentence for a set sentence, &lt;/P&gt;&lt;P&gt;when establishing the lastReloadTime variable. &lt;/P&gt;&lt;P&gt;Try it and let me know, because I´ve been getting some errors but I´ve been able to solve them one by one&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Jun 2013 14:47:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337835#M494842</guid>
      <dc:creator />
      <dc:date>2013-06-03T14:47:47Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337836#M494843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;add code in the where clause&lt;/P&gt;&lt;P&gt;CalenderDate&amp;gt;date('$(lastReloadTime)','MM-DD-YYYY')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Apr 2014 03:59:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337836#M494843</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-04-15T03:59:19Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337837#M494844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your Suggestions Were Informative ,But What if the new data that is loaded has a possibility of changing for period say 1 week from its date of entry into the Data Base.&lt;/P&gt;&lt;P&gt;At these Situation "ReloadTime()" may not the perfect Option....!&lt;/P&gt;&lt;P&gt;Can Any one suggest me a solution for this problem....?&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>Thu, 21 Aug 2014 12:39:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337837#M494844</guid>
      <dc:creator />
      <dc:date>2014-08-21T12:39:27Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental reload and store into QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337838#M494845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a changed date field in your tables then you need to use it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Feb 2015 12:00:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload-and-store-into-QVD-file/m-p/337838#M494845</guid>
      <dc:creator>Karthik3</dc:creator>
      <dc:date>2015-02-24T12:00:22Z</dc:date>
    </item>
  </channel>
</rss>

