<?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 Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Incremental-Load/m-p/242638#M92724</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;I have a excel data from the month of Jan11 to July11&lt;/P&gt;&lt;P&gt;now i want to give incremental load in it by concatenating the upcoming xls eg:Aug11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I never tried incremental load before.&lt;/P&gt;&lt;P&gt;Please anybody help me in it.&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, 07 Sep 2011 09:59:59 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-09-07T09:59:59Z</dc:date>
    <item>
      <title>Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load/m-p/242638#M92724</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;I have a excel data from the month of Jan11 to July11&lt;/P&gt;&lt;P&gt;now i want to give incremental load in it by concatenating the upcoming xls eg:Aug11&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I never tried incremental load before.&lt;/P&gt;&lt;P&gt;Please anybody help me in it.&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, 07 Sep 2011 09:59:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load/m-p/242638#M92724</guid>
      <dc:creator />
      <dc:date>2011-09-07T09:59:59Z</dc:date>
    </item>
    <item>
      <title>Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load/m-p/242639#M92725</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;&amp;nbsp;&amp;nbsp;&amp;nbsp; Have a look at the documents available here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;A _jive_internal="true" href="https://community.qlik.com/search.jspa?resultTypes=document&amp;amp;dateRange=all&amp;amp;peopleEnabled=true&amp;amp;q=incremental load&amp;amp;containerType=&amp;amp;container=&amp;amp;containerName=&amp;amp;username=&amp;amp;rankBy=relevance&amp;amp;newq=incremental load*&amp;amp;numResults=15"&gt;http://community.qlik.com/search.jspa?resultTypes=document&amp;amp;dateRange=all&amp;amp;peopleEnabled=true&amp;amp;q=incremental+load&amp;amp;containerType=&amp;amp;container=&amp;amp;containerName=&amp;amp;username=&amp;amp;rankBy=relevance&amp;amp;newq=incremental+load*&amp;amp;numResults=15&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kaushik Solanki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Sep 2011 10:14:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load/m-p/242639#M92725</guid>
      <dc:creator>kaushiknsolanki</dc:creator>
      <dc:date>2011-09-07T10:14:48Z</dc:date>
    </item>
    <item>
      <title>Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-Load/m-p/242640#M92726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls check following script which perfrom insert,update and delte operation in increamental load&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H2&gt;&lt;/H2&gt;&lt;H2&gt;Let ThisExecTime = Now( ); &lt;/H2&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;&lt;SPAN style="font-style: italic;"&gt;QV_Table&lt;/SPAN&gt;:&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;SQL SELECT PrimaryKey, X, Y FROM DB_TABLE&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;WHERE ModificationTime &amp;gt;= #$(LastExecTime)#&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;AND ModificationTime &amp;lt; #$(ThisExecTime)#;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;Concatenate LOAD PrimaryKey, X, Y FROM File.QVD&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;WHERE NOT EXISTS(PrimaryKey);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;Inner Join SQL SELECT PrimaryKey FROM DB_TABLE;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;If ScriptErrorCount = 0 then &lt;/P&gt;&lt;P style="font-weight: bold;"&gt;STORE QV_Table INTO File.QVD;&lt;/P&gt;&lt;P style="font-weight: bold;"&gt;Let LastExecTime = ThisExecTime; &lt;/P&gt;&lt;P style="font-weight: bold;"&gt;End If&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Sep 2011 06:43:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-Load/m-p/242640#M92726</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2011-09-08T06:43:31Z</dc:date>
    </item>
  </channel>
</rss>

