<?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: Reload Advice in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754134#M661180</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay in responding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This incremental load technique is the best way (in my opinion) of handling frequent reloads. It works on the principle of taking small bit size chunks and saving it to a QVD file. Most of the time taken is loading and saving the QVD files although this can be optimised by using monthly (or even daily) qvd files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the data is stored in a QVD file then the dashboard can reload super fast and there's no need for a partial re-load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Mar 2015 09:22:53 GMT</pubDate>
    <dc:creator>richard_pearce6</dc:creator>
    <dc:date>2015-03-30T09:22:53Z</dc:date>
    <item>
      <title>Reload Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754131#M661177</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I have never used partial reload or dynamic update, but I now have an application do so and I'd like some advice on the best way to set it up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My script loads about 30 million records of inventory transactions that cover 24 months, up through midnight last night. I now have access to a database view my DBA created that is identical except that it provides near real-time data SINCE midnight last night. This will give users up to the minute inventory transactions, as well as history, so that they always know what is going on with a particular product.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So I load the large history QVD each morning but how do I set up my script and Publisher task to pick up the "real time" updates throughout the day, but without reloading the 30 million row history each time? Below is what my current script looks like where I'm loading it all, but just once per day.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction_History:&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; Branch_Plant, &lt;/P&gt;&lt;P&gt;&amp;nbsp; SKU, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Fiscal_Period_Date, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Order_Number, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp; %SKULotCodeKey,&lt;/P&gt;&lt;P&gt;&amp;nbsp; Order_Type, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Order_Type_Description, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Document_Type, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Document_Type_Description, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Reason_Code, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Reason_Code_Description, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Lot_Code, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Transaction_Date, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Transaction_Reference, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Transaction_Explanation, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Transaction_Quantity, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Lot_Status_Code, &lt;/P&gt;&lt;P&gt;&amp;nbsp; Lot_Status_Code_Description &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Detail_Inventory_Transactions_MultiYear.qvd&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Current_Transactions:&lt;/P&gt;&lt;P&gt;Concatenate ("Transaction_History")&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp; "Branch_Plant",&lt;/P&gt;&lt;P&gt;&amp;nbsp; SKU,&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Fiscal_Period_Date",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Order_Number",&lt;/P&gt;&lt;P&gt;&amp;nbsp; Text(SKU)&amp;amp;Text(Lot_Code) as %SKULotCodeKey, &lt;/P&gt;&lt;P&gt;&amp;nbsp; "Order_Type",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Order_Type_Description",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Document_Type",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Document_Type_Description",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Reason_Code",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Reason_Code_Description",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Lot_Code",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Transaction_Date",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Transaction_Reference",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Transaction_Explanation",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Transaction_Quantity",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Lot_Status_Code",&lt;/P&gt;&lt;P&gt;&amp;nbsp; "Lot_Status_Code_Description"&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM "Fg_DataMart".dbo."Detail_Inventory_Transactions_Changes";&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 16:59:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754131#M661177</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-19T16:59:18Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754132#M661178</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your load is optimised its no problem for QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best way to do this is to set up an extract qvw layer which handles incremental loading. I have an example here &lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-7563"&gt;http://community.qlik.com/docs/DOC-7563&lt;/A&gt; detailed videos on how this works is on my blog. QlikCentral.com&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 17:13:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754132#M661178</guid>
      <dc:creator>richard_pearce6</dc:creator>
      <dc:date>2015-03-19T17:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754133#M661179</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While this data is loading optimized, the app goes on to load other data (e.g. production, sales) and perform a number of transformations and calculations. In total, it takes about 7 minutes for the app to do a full reload. However, the users are wanting a 10 minute refresh, at most, which is why I'm trying to see if I can do a partial reload of just that second table or maybe utilize a dynamic update since that second table is essentially "live" data. &lt;SPAN style="font-size: 13.3333330154419px;"&gt;Obviously, doing a seven minute reload every ten minutes is not the way I want to go. And I don't really understand your incremental approach or how it could be applied to my situation.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2015 20:15:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754133#M661179</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-19T20:15:00Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754134#M661180</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brian,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry for the delay in responding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This incremental load technique is the best way (in my opinion) of handling frequent reloads. It works on the principle of taking small bit size chunks and saving it to a QVD file. Most of the time taken is loading and saving the QVD files although this can be optimised by using monthly (or even daily) qvd files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once the data is stored in a QVD file then the dashboard can reload super fast and there's no need for a partial re-load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Mar 2015 09:22:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754134#M661180</guid>
      <dc:creator>richard_pearce6</dc:creator>
      <dc:date>2015-03-30T09:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reload Advice</title>
      <link>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754135#M661181</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, thanks for the reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Mar 2015 14:32:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reload-Advice/m-p/754135#M661181</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2015-03-31T14:32:06Z</dc:date>
    </item>
  </channel>
</rss>

