<?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 Incremental reload in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222138#M714820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I have a QlikView application which loads the data from a&lt;BR /&gt;oracle database...&lt;BR /&gt;&lt;BR /&gt;SELECT * FROM DB."DATE_DIMENSION";&lt;BR /&gt;&lt;BR /&gt;Is there a way to do an incremental update of the data (only reload new data)&lt;BR /&gt;without loading the entire data of the db.&lt;BR /&gt;&lt;BR /&gt;How is it possible...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Apr 2010 08:03:48 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-04-21T08:03:48Z</dc:date>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222138#M714820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;BR /&gt;&lt;BR /&gt;I have a QlikView application which loads the data from a&lt;BR /&gt;oracle database...&lt;BR /&gt;&lt;BR /&gt;SELECT * FROM DB."DATE_DIMENSION";&lt;BR /&gt;&lt;BR /&gt;Is there a way to do an incremental update of the data (only reload new data)&lt;BR /&gt;without loading the entire data of the db.&lt;BR /&gt;&lt;BR /&gt;How is it possible...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 08:03:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222138#M714820</guid>
      <dc:creator />
      <dc:date>2010-04-21T08:03:48Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222139#M714821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Yes, you can do the incremental load in db.&lt;/P&gt;&lt;P&gt;Pre-requirement - Should have a primary key / Composite key and date field.&lt;/P&gt;&lt;P&gt;3 types of Incremental load&lt;BR /&gt;1. Only Insertion in db&lt;BR /&gt;2. Insertion &amp;amp; updation in db&lt;BR /&gt;3. Insertion, Updation &amp;amp; Physical Deletion in db&lt;/P&gt;&lt;P&gt;Eg: P1 as Primary Key, D1 as Date Field&lt;/P&gt;&lt;P&gt;For Only Insertion:&lt;/P&gt;&lt;P&gt;XYZ:&lt;BR /&gt;Load *;&lt;BR /&gt;SQL Select a,b,c from xyz where D1&amp;gt;"Yesterday's Date"&lt;BR /&gt;Concatenate&lt;BR /&gt;Load a,b,c from XYZ.QVD;&lt;/P&gt;&lt;P&gt;Store XYZ into XYZ.QVD;&lt;/P&gt;&lt;P&gt;For Insertion and updation&lt;/P&gt;&lt;P&gt;XYZ:&lt;BR /&gt;Load *;&lt;BR /&gt;SQL Select P1,a,b,c from xyz where D1&amp;gt;"Yesterday's Date"&lt;BR /&gt;Concatenate&lt;BR /&gt;Load P1,a,b,c from XYZ.QVD where NOT EXISTS(P1,P1);&lt;/P&gt;&lt;P&gt;For Insertion, updation and deletion:&lt;/P&gt;&lt;P&gt;XYZ:&lt;BR /&gt;Load *;&lt;BR /&gt;SQL Select P1,a,b,c from xyz where D1&amp;gt;"Yesterday's Date"&lt;BR /&gt;Concatenate&lt;BR /&gt;Load P1,a,b,c from XYZ.QVD where NOT EXISTS(P1,P1);&lt;BR /&gt;InnerJoin&lt;BR /&gt;SQL Select P1 from xyz;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 08:22:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222139#M714821</guid>
      <dc:creator />
      <dc:date>2010-04-21T08:22:53Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222140#M714822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Rajesh Jeyaraman wrote:&lt;BR /&gt;Hi,&lt;BR /&gt;Yes, you can do the incremental load in db.&lt;BR /&gt;Pre-requirement - Should have a primary key / Composite key and date field.&lt;BR /&gt;3 types of Incremental load&lt;BR /&gt;1. Only Insertion in db&lt;BR /&gt;2. Insertion &amp;amp; updation in db&lt;BR /&gt;3. Insertion, Updation &amp;amp; Physical Deletion in db&lt;BR /&gt;Eg: P1 as Primary Key, D1 as Date Field&lt;BR /&gt;For Only Insertion:&lt;BR /&gt;XYZ:&lt;BR /&gt;Load *;&lt;BR /&gt;SQL Select a,b,c from xyz where D1&amp;gt;&lt;B&gt;"Yesterday's Date"&lt;/B&gt;&lt;BR /&gt;Concatenate&lt;BR /&gt;Load a,b,c from XYZ.QVD;&lt;BR /&gt;Store XYZ into XYZ.QVD;&lt;BR /&gt;For Insertion and updation&lt;BR /&gt;XYZ:&lt;BR /&gt;Load *;&lt;BR /&gt;SQL Select P1,a,b,c from xyz where D1&amp;gt;&lt;B&gt;"Yesterday's Date"&lt;/B&gt;&lt;BR /&gt;Concatenate&lt;BR /&gt;Load P1,a,b,c from XYZ.QVD where NOT EXISTS(P1,P1);&lt;BR /&gt;For Insertion, updation and deletion:&lt;BR /&gt;XYZ:&lt;BR /&gt;Load *;&lt;BR /&gt;SQL Select P1,a,b,c from xyz where D1&amp;gt;&lt;B&gt;"Yesterday's Date"&lt;/B&gt;&lt;BR /&gt;Concatenate&lt;BR /&gt;Load P1,a,b,c from XYZ.QVD where NOT EXISTS(P1,P1);&lt;BR /&gt;InnerJoin&lt;BR /&gt;SQL Select P1 from xyz;&lt;BR /&gt;Regards&lt;BR /&gt;Rajesh&amp;lt;div&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;In all your example you are verifying the data with the DATE(&lt;B&gt;"Yesterday's Date")&lt;/B&gt; field. Is there are any other way to do so if we don't have the date field. As I don't have the date field in my table. But I want to do the incremental load. Is that possible? Please let me know.&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Rikab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 08:39:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222140#M714822</guid>
      <dc:creator />
      <dc:date>2010-04-21T08:39:05Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222141#M714823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It is bit difficult to find the inserted or updated records without the date field.&lt;/P&gt;&lt;P&gt;In my previous mail the date field that i am pointing to record created or updated date field.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Rajesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 08:58:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222141#M714823</guid>
      <dc:creator />
      <dc:date>2010-04-21T08:58:42Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222142#M714824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;I was just wondering if there is a way to do the incremental update without checking from the db which data sets are already imported. But it seems that there is no way to get around this...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 09:50:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222142#M714824</guid>
      <dc:creator />
      <dc:date>2010-04-22T09:50:43Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222143#M714825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;whiterabbit wrote:I was just wondering if there is a way to do the incremental update without checking from the db which data sets are already imported. But it seems that there is no way to get around this...&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Answering a question with a question - QlikView aside, how would you query the table only for records that were not previously imported, e.g. records that have changed (or been added) since the last time you run the query? If there's any field you can use that indicates this, you can use that for QlikView as well - but if your data does not in any way reflect changes, there's no way for QlikView to know what needs to be updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One thing you can do instead of an incremental update is to load X days back and concatenate that with the contents of a QVD - assuming your records stop changing after a certain amount of time, of course. For example:&lt;/P&gt;&lt;P&gt;LET DATE_START = DATE((TODAY()-30));&lt;/P&gt;&lt;P&gt;myData:&lt;/P&gt;&lt;P&gt;SELECT * FROM myTable WHERE CreateDate&amp;gt;='$(DATE_START)';&lt;/P&gt;&lt;P&gt;Load * FROM myQVD.qvd WHERE CreateDate &amp;lt; '$(DATE_START)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store * myData into myQVD.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 10:12:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222143#M714825</guid>
      <dc:creator>Or</dc:creator>
      <dc:date>2010-04-22T10:12:10Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222144#M714826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now I added a datefield "MODTIME" which containts the timestamp when the data is created as value.&lt;BR /&gt;In the loadscript of QV app I have:&lt;BR /&gt;&lt;BR /&gt;...&lt;BR /&gt;&lt;BR /&gt;LET LastExecTime = ReloadTime();&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;myData:&lt;BR /&gt;SELECT * FROM ORDERS&lt;BR /&gt; WHERE MODTIME &amp;gt; TO_TIMESTAMP('$(LastExecTime)','MM/DD/YY HH:MI:SS');&lt;BR /&gt; LOAD * FROM myQVD.qvd;&lt;BR /&gt;store * from myData into myQVD.qvd;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;When I reload the data, the values stored in the qvd file are not loaded correctly (they are not shown, only the data added in the db is shown). Instead of displaying the data of myQVD there appears a field with xml. What I am doing wrong in the above statements??&lt;/P&gt;&lt;P&gt;Moreover, the first time I executed it, there was also an error because the qvd file does not yet exist... How can I handle this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 12:51:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222144#M714826</guid>
      <dc:creator />
      <dc:date>2010-04-23T12:51:10Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222145#M714827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something like this (untested, probably a couple syntax errors at a minimum):&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;IF filesize('myQVD.qvd') &amp;gt; 0 THEN&lt;BR /&gt; MaxTimeTable:&lt;BR /&gt; LOAD max(MODTIME) as MaxTime FROM myQVD.qvd (QVD);&lt;BR /&gt; MyData:&lt;BR /&gt; LOAD *;&lt;BR /&gt; SQL SELECT * FROM ORDERS&lt;BR /&gt; WHERE MODTIME &amp;gt; TO_TIMESTAMP($(=fieldvalue('MaxTime',1)),'MM/DD/YY HH:MI:SS');&lt;BR /&gt; DROP TABLE MaxTimeTable;&lt;BR /&gt; CONCATENATE (MyData) LOAD * FROM myQVD.qvd (QVD);&lt;BR /&gt;ELSE&lt;BR /&gt; MyData:&lt;BR /&gt; LOAD *;&lt;BR /&gt; SQL SELECT * FROM ORDERS;&lt;BR /&gt;END-IF&lt;/P&gt;&lt;P style="padding-left:30px;"&gt;STORE MyData INTO myQVD.qvd;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Apr 2010 00:17:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222145#M714827</guid>
      <dc:creator>johnw</dc:creator>
      <dc:date>2010-04-24T00:17:41Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222146#M714828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;whiterabbit wrote:Instead of displaying the data of myQVD there appears a field with xml&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Because the (qvd) parameter is missing in the QVD load.&lt;/P&gt;&lt;P&gt;LOAD * FROM myQVD.qvd &lt;STRONG&gt;(qvd)&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Apr 2010 04:59:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222146#M714828</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2010-04-24T04:59:38Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222147#M714829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi John,&lt;/P&gt;&lt;P&gt;Can you please attach any sample application which does he incremental load please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 07:16:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222147#M714829</guid>
      <dc:creator />
      <dc:date>2010-06-10T07:16:59Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222148#M714830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;Can you please attach any sample application which does he incremental load please.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jun 2010 07:20:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222148#M714830</guid>
      <dc:creator />
      <dc:date>2010-06-10T07:20:32Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222149#M714831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Rikab Kothari wrote:Can you please attach any sample application which does he incremental load please.&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;There is an example in the Qlikview Cookbook.&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Jul 2010 22:29:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222149#M714831</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2010-07-06T22:29:24Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222150#M714832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the attached application for incremental load. plz find it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Neetu Singh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jul 2010 12:57:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222150#M714832</guid>
      <dc:creator>neetu_singh</dc:creator>
      <dc:date>2010-07-09T12:57:48Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222151#M714833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neetu,&lt;/P&gt;&lt;P&gt;It was not Rob. It was me who was looking for the incremental reload.&lt;/P&gt;&lt;P&gt;Anyway many thanks for sending me the application. Hope it is understandable and can use the same logic in my document. Because I have few document which does the incremental load but I couldn't understand how it was done. Hope your document will be understandable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jul 2010 13:45:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222151#M714833</guid>
      <dc:creator />
      <dc:date>2010-07-09T13:45:02Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222152#M714834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="jive_text_macro jive_macro_quote" jivemacro="quote"&gt;&lt;BR /&gt;Rikab Kothari wrote: It was me who was looking for the incremental reload&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Hi Rikab,&lt;/P&gt;&lt;P&gt;There is another example in the Qlikview Cookbook that takes a slightly different approach then Neetu's example. You can download the Cookbook from&lt;/P&gt;&lt;P&gt;&lt;A href="http://robwunderlich.com/Download.html"&gt;http://robwunderlich.com/Download.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Jul 2010 22:27:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222152#M714834</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2010-07-09T22:27:02Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222153#M714835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;Thanks for reply! Yes I already gone through that. But not able to understand how it works. If I don't understand then it not easy to apply the same logic in my document also.&lt;/P&gt;&lt;P&gt;May be I need to dig little deeper to find out how exactly it is happening there. I will definitely go through it once more then will let you know the outcome. Again many thanks for your concern!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jul 2010 05:54:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222153#M714835</guid>
      <dc:creator />
      <dc:date>2010-07-10T05:54:18Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222154#M714836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob and All(Who are all is involved in this post),&lt;/P&gt;&lt;P&gt;I have attached very basic document to work on with incremental load. Can some one please do the incremental load with that so that I can understand the basic things in that.&lt;/P&gt;&lt;P&gt;It is very small and it will not take much time to work on it.&lt;/P&gt;&lt;P&gt;Hope to receive reply from some one soon.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Jul 2010 06:15:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222154#M714836</guid>
      <dc:creator />
      <dc:date>2010-07-10T06:15:28Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222155#M714837</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;Can some one please work on in my document and help me out!&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Rikab Kothari&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 17 Jul 2010 05:55:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222155#M714837</guid>
      <dc:creator />
      <dc:date>2010-07-17T05:55:47Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222156#M714838</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;Can some please help me out to do the incremental load for the document which is attached just for the understanding purpose. I have been waiting for the long time but still there is no response.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 05:30:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222156#M714838</guid>
      <dc:creator />
      <dc:date>2010-07-19T05:30:15Z</dc:date>
    </item>
    <item>
      <title>Incremental reload</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222157#M714839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rikab,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please find the attached application for incremental load. hope it will helpful to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If any issue . Plz feel free to coordinate with me,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bye nd Take Care&lt;/P&gt;&lt;P&gt;Neetu Singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Jul 2010 08:40:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-reload/m-p/222157#M714839</guid>
      <dc:creator>neetu_singh</dc:creator>
      <dc:date>2010-07-19T08:40:41Z</dc:date>
    </item>
  </channel>
</rss>

