<?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/10020#M776023</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;Please find the attachment of the QVW file. My requirement is to implement the incremental load ( daily insert and update)&lt;/P&gt;&lt;P&gt;to accomplish this i tried with a excel file ...&lt;/P&gt;&lt;P&gt;it is working ...&lt;/P&gt;&lt;P&gt;My question is , If you look into my qVW file in the script&amp;nbsp; MAIN tab i have fetched the data from excel and stored into a particular location&amp;nbsp; and created QVD and i have commented the Main tab and wont use it any more &lt;/P&gt;&lt;P&gt;and in the second tab iam using that qvd file and using incremental last_update_date script then&amp;nbsp; again fetching the data from excel file and writing the WHERE condition (salesDate&amp;gt;'$(vLast_Update_Date)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my Database i have salesDate where daily 10000 recods will be updated ...&lt;/P&gt;&lt;P&gt;Now with the above logic will my script this has become one time increment load ? right ?&lt;/P&gt;&lt;P&gt;i need to know how can i make it daily update and insert ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expertise please do suggest ...&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, 25 Nov 2020 16:16:04 GMT</pubDate>
    <dc:creator>smilingjohn</dc:creator>
    <dc:date>2020-11-25T16:16:04Z</dc:date>
    <item>
      <title>Incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load/m-p/10020#M776023</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;Please find the attachment of the QVW file. My requirement is to implement the incremental load ( daily insert and update)&lt;/P&gt;&lt;P&gt;to accomplish this i tried with a excel file ...&lt;/P&gt;&lt;P&gt;it is working ...&lt;/P&gt;&lt;P&gt;My question is , If you look into my qVW file in the script&amp;nbsp; MAIN tab i have fetched the data from excel and stored into a particular location&amp;nbsp; and created QVD and i have commented the Main tab and wont use it any more &lt;/P&gt;&lt;P&gt;and in the second tab iam using that qvd file and using incremental last_update_date script then&amp;nbsp; again fetching the data from excel file and writing the WHERE condition (salesDate&amp;gt;'$(vLast_Update_Date)';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In my Database i have salesDate where daily 10000 recods will be updated ...&lt;/P&gt;&lt;P&gt;Now with the above logic will my script this has become one time increment load ? right ?&lt;/P&gt;&lt;P&gt;i need to know how can i make it daily update and insert ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Expertise please do suggest ...&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, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load/m-p/10020#M776023</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load/m-p/10021#M776024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//This should be one time load.&lt;/P&gt;&lt;P&gt;Sales:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Country,&lt;/P&gt;&lt;P&gt;Division,&lt;/P&gt;&lt;P&gt;Sales,&lt;/P&gt;&lt;P&gt;PRoduct,&lt;/P&gt;&lt;P&gt;SalesDate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Store Sales into D:\salesQVD\sales.qvd(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;// The above section should run only once, may be create a different layer or put a condition to check if QVD exists or not. After that your logic will work as expected as the variable value will be updated every time. Also added an additional store statement in the end&lt;/SPAN&gt;&lt;SPAN style="color: #ff0000; font-size: 10pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Incremental:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Country,&lt;/P&gt;&lt;P&gt;Division,&lt;/P&gt;&lt;P&gt;Sales,&lt;/P&gt;&lt;P&gt;PRoduct,&lt;/P&gt;&lt;P&gt;SalesDate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;D:\salesQVD\sales.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last_Updated_Date:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;max(SalesDate) as maxdate&lt;/P&gt;&lt;P&gt;Resident Incremental;&lt;/P&gt;&lt;P&gt;LET vLast_Updated_Date = Peek('maxdate',0,'Last_Updated_Date');&lt;/P&gt;&lt;P&gt;DROP Table Last_Updated_Date;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Concatenate (Incremental)&lt;/P&gt;&lt;P&gt;LOAD Country,&lt;/P&gt;&lt;P&gt;Division,&lt;/P&gt;&lt;P&gt;Sales,&lt;/P&gt;&lt;P&gt;PRoduct,&lt;/P&gt;&lt;P&gt;SalesDate&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;D&gt;&lt;/D&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is [Export Worksheet])&lt;/P&gt;&lt;P&gt;Where SalesDate &amp;gt; '$(vLast_Updated_Date)' ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;store Incremental into D:\salesQVD\sales.qvd(qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br,&lt;/P&gt;&lt;P&gt;KC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2018 12:59:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load/m-p/10021#M776024</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2018-04-24T12:59:34Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load/m-p/10022#M776025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the KC &lt;/P&gt;&lt;P&gt;so you mean to say that i need to create the qvd at the end and keep using the same qvd it keeps updating every time&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;right ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2018 13:06:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load/m-p/10022#M776025</guid>
      <dc:creator>smilingjohn</dc:creator>
      <dc:date>2018-04-24T13:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Incremental load</title>
      <link>https://community.qlik.com/t5/QlikView/Incremental-load/m-p/10023#M776026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ya , that is correct. Since it is simple update so this logic should work &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Apr 2018 15:42:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Incremental-load/m-p/10023#M776026</guid>
      <dc:creator>jyothish8807</dc:creator>
      <dc:date>2018-04-24T15:42:57Z</dc:date>
    </item>
  </channel>
</rss>

