<?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: Partial Reload Help in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305899#M827095</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;You might find it easier to just separate your two extracts to produce a few QVD files, and then load these QVD files into your user interface application.&amp;nbsp; Then you can run the relevant extracts as required, and the UI application will pick up the latest QVD data file.&amp;nbsp; The load of the QVD files should be relatively fast, and it will make your logic easier to follow.&amp;nbsp; The partial reloads do work, but it ultimately means you have to manage multiple workflows in the same load script code which can be challenging for new users trying to learn Qlikview.&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;It depends on a number of factors (e.g. volume of updated data to new data being loaded) as to whether using a partial reload will be faster or not (quite often loading from QVD is actually faster, as you need to filter the data to be excluded from the data set in memory when using a partial reload, or else you end up with the duplicate records you're seeing above).&amp;nbsp; With partial reloads, you either run a Full Reload or a Partial Reload - so you need some other mechanism to identify which data sets it is you want to load when you run the partial reload (this can be achieved in many ways - e.g. config file, checking dates/timestamps in data vs source, etc).&amp;nbsp; With the individual extract.qvw's, you can control which extracts occur simply by running the relevant task.&amp;nbsp; The UI just picks up the latest data that has been extracted to QVD.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;So you end up with (simple example): &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;ExtractA.qvw -&amp;gt; Extracts data to A.qvd&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;ExtractB.qvw -&amp;gt; Extracts data to B.qvd&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;UserInterface.qvw -&amp;gt; Loads data from A.qvd and B.qvd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Jul 2017 11:58:26 GMT</pubDate>
    <dc:creator />
    <dc:date>2017-07-24T11:58:26Z</dc:date>
    <item>
      <title>Partial Reload Help</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305896#M827092</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 an invoicing report where I concatenate data from various Excel files and from my internal system through an ODBC link. The Excel files are very big as they have historical invoicing data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I want to do in order to make load times faster is to when I use Reload or Partial Reload I only update the part from the system, without reloading these files as I rarely modify them. Any idea on how to do that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system data is only the current month's information.&lt;/P&gt;&lt;P&gt;I tried using ADD and REPLACE to this section in my script, but as you can see below (blue bars), ADD just duplicate the data that I had before for this section and REPLACE erases all data (even from the Excel files) and leave only the system data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ORIGINAL&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikView Help5.png" class="jive-image image-1" src="/legacyfs/online/170172_QlikView Help5.png" style="height: 156px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WITH ADD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikView Help6.png" class="jive-image image-2" src="/legacyfs/online/170173_QlikView Help6.png" style="height: 163px; width: 620px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;WITH REPLACE&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="QlikView Help7.png" class="jive-image image-3" src="/legacyfs/online/170189_QlikView Help7.png" style="height: 170px; width: 620px;" /&gt;&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/Partial-Reload-Help/m-p/1305896#M827092</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload Help</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305897#M827093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to use an if statement with the IsPartialReload() function.&lt;/P&gt;&lt;P&gt;With that you can do more than &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF IsPartialReload()=True Then&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE(YourOriginalTable)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load *&lt;/P&gt;&lt;P&gt;From YourTable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That way you can do other commands besides just ADD and REPLACE.&lt;/P&gt;&lt;P&gt;You can do a concatenate to an existing table in the datamodel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Jul 2017 20:59:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305897#M827093</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-21T20:59:04Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload Help</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305898#M827094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Wallo,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm rather new to QlkView, where do I find the table name in order to to add after Concatenate?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2017 11:19:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305898#M827094</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-24T11:19:19Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload Help</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305899#M827095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;You might find it easier to just separate your two extracts to produce a few QVD files, and then load these QVD files into your user interface application.&amp;nbsp; Then you can run the relevant extracts as required, and the UI application will pick up the latest QVD data file.&amp;nbsp; The load of the QVD files should be relatively fast, and it will make your logic easier to follow.&amp;nbsp; The partial reloads do work, but it ultimately means you have to manage multiple workflows in the same load script code which can be challenging for new users trying to learn Qlikview.&amp;nbsp; &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;It depends on a number of factors (e.g. volume of updated data to new data being loaded) as to whether using a partial reload will be faster or not (quite often loading from QVD is actually faster, as you need to filter the data to be excluded from the data set in memory when using a partial reload, or else you end up with the duplicate records you're seeing above).&amp;nbsp; With partial reloads, you either run a Full Reload or a Partial Reload - so you need some other mechanism to identify which data sets it is you want to load when you run the partial reload (this can be achieved in many ways - e.g. config file, checking dates/timestamps in data vs source, etc).&amp;nbsp; With the individual extract.qvw's, you can control which extracts occur simply by running the relevant task.&amp;nbsp; The UI just picks up the latest data that has been extracted to QVD.&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;So you end up with (simple example): &lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;ExtractA.qvw -&amp;gt; Extracts data to A.qvd&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;ExtractB.qvw -&amp;gt; Extracts data to B.qvd&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;UserInterface.qvw -&amp;gt; Loads data from A.qvd and B.qvd.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2017 11:58:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305899#M827095</guid>
      <dc:creator />
      <dc:date>2017-07-24T11:58:26Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload Help</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305900#M827096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It would be the name of the table you need to update in your table viewer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Graeme has a point though.&amp;nbsp; Load your Excel files into 1 or more QVDs.&amp;nbsp; You should then be able to do an incremental load on them to keep them updated.&amp;nbsp; &lt;A href="http://www.learnallbi.com/incremental-load-in-qlikview-part1/" title="http://www.learnallbi.com/incremental-load-in-qlikview-part1/"&gt;http://www.learnallbi.com/incremental-load-in-qlikview-part1/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in your application with your chart load the QVDs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2017 14:05:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305900#M827096</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-24T14:05:28Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload Help</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305901#M827098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Graeme,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I save as QVD?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jul 2017 16:57:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305901#M827098</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2017-07-24T16:57:01Z</dc:date>
    </item>
    <item>
      <title>Re: Partial Reload Help</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305902#M827099</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Take a look at the STORE command in the manual.&amp;nbsp; The QVD's can then be loaded from just like a CSV/XLS file (e.g. &lt;SPAN style="font-size: 13.3333330154419px; font-weight: bold;"&gt;load * from xyz.qvd (qvd);&lt;/SPAN&gt;).&amp;nbsp; There's plenty of information in the manuals, a few relevant excerpts below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;H1&gt;&lt;A name="kanchor1284"&gt;&lt;/A&gt;Store&lt;/H1&gt;&lt;P&gt;A QVD or a CSV file can be created by a &lt;SPAN class="Bold"&gt;store&lt;/SPAN&gt; statement in the script. The statement will create an explicitly named QVD or CSV file. The statement can only export fields from one logical table. The text values are exported to the CSV file in UTF-8 format. A delimiter can be specified, see &lt;A class="MCXref_0"&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;/A&gt;. The &lt;SPAN class="Bold"&gt;store&lt;/SPAN&gt; statement to a CSV file does not support BIFF export. &lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;store&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;[ *fieldlist &lt;SPAN class="Bold"&gt;from&lt;/SPAN&gt;] table &lt;SPAN class="Bold"&gt;into&lt;/SPAN&gt; filename [ format-spec ];&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;*fieldlist::= ( &lt;SPAN style="font-size: 11pt;"&gt;*&lt;/SPAN&gt; | field ) { , field } )&lt;/SPAN&gt; is a list of the fields to be selected. Using * as field list indicates all fields. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;field::= fieldname [&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;as &lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;aliasname ]&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;fieldname&lt;/SPAN&gt; is a text that is identical to a field name in the &lt;SPAN class="Italic"&gt;table&lt;/SPAN&gt;. (Note that the field name must be enclosed by straight double &lt;A class="MCXref_0"&gt;&lt;EM&gt;Quotation Marks in Scripting&lt;/EM&gt;&lt;/A&gt; or square brackets if it contains e.g. spaces.)&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;aliasname&lt;/SPAN&gt; is an alternate name for the field to be used in the resulting QVD or CSV file. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;table&lt;/SPAN&gt; is a script labeled, already loaded table to be used as source for data. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;filename&lt;/SPAN&gt; is the name of the target file. The interpretation of file name is similar to names in &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; statements, i.e. the &lt;SPAN class="Bold"&gt;directory&lt;/SPAN&gt; statements apply. &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Italic"&gt;format-spec ::= &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; ( &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;txt&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; | &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;qvd&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt; ) &lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;The format specification consists of a the text &lt;SPAN class="Bold"&gt;txt&lt;/SPAN&gt; for text files, or the text &lt;SPAN class="Bold"&gt;qvd&lt;/SPAN&gt; for qvd files. If the format specification is omitted, &lt;SPAN class="Bold"&gt;qvd&lt;/SPAN&gt; is assumed. &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P class="Code"&gt;Store mytable into xyz.qvd (qvd);&lt;/P&gt;&lt;P class="Code"&gt;Store &lt;SPAN style="font-size: 11pt;"&gt;*&lt;/SPAN&gt; from mytable into xyz.qvd;&lt;/P&gt;&lt;P class="Code"&gt;Store Name, RegNo from mytable into xyz.qvd;&lt;/P&gt;&lt;P class="Code"&gt;Store Name as a, RegNo as b from mytable into xyz.qvd;&lt;/P&gt;&lt;P class="Code"&gt;store mytable into myfile.txt (txt);&lt;/P&gt;&lt;P class="Code"&gt;store * from mytable into myfile.txt (txt);&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;H2&gt;Reading Data from QVD Files&lt;/H2&gt;&lt;P style="margin-top: 4pt;"&gt;A QVD file can be read into or accessed by QlikView by the following methods:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Loading a QVD file as an explicit data source. QVD files can be referenced by a &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; statement in the QlikView script just like any other type of text files (csv, fix, dif, biff etc). The &lt;A class="MCXref_0"&gt;&lt;EM&gt;File Wizard: Type&lt;/EM&gt;&lt;/A&gt; handles QVD files by the same principles. &lt;BR /&gt; &lt;BLOCKQUOTE class="jive-quote"&gt; Examples:&lt;/BLOCKQUOTE&gt;&lt;P style="font-weight: bold; margin-top: 4pt;"&gt;load * from xyz.qvd (qvd);&lt;/P&gt;&lt;P style="font-weight: bold; margin-top: 4pt;"&gt;load Name, RegNo from xyz.qvd (qvd);&lt;/P&gt;&lt;P style="font-weight: bold; margin-top: 4pt;"&gt;load Name as a, RegNo as b from xyz.qvd (qvd);&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;Automatic loading of buffered QVD files. When using the &lt;A class="MCXref_0"&gt;&lt;EM&gt;Buffer&lt;/EM&gt;&lt;/A&gt; prefix on &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; or &lt;SPAN class="Bold"&gt;select&lt;/SPAN&gt; statements, no explicit statements for reading are necessary. QlikView will determine the extent to which it will use data from the QVD file as opposed to acquiring data via the original &lt;SPAN class="Bold"&gt;load&lt;/SPAN&gt; or &lt;SPAN class="Bold"&gt;select&lt;/SPAN&gt; statement. &lt;/LI&gt;&lt;LI&gt;Accessing QVD files via the script. A number of script functions (all beginning with &lt;SPAN class="Bold"&gt;qvd&lt;/SPAN&gt;) can be used for retrieving various information on the data found in the XML header of a QVD file. These functions are presented under the &lt;A class="MCXref_0"&gt;&lt;EM&gt;File Functions in Script&lt;/EM&gt;&lt;/A&gt; functions. &lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 25 Jul 2017 07:30:47 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-Reload-Help/m-p/1305902#M827099</guid>
      <dc:creator />
      <dc:date>2017-07-25T07:30:47Z</dc:date>
    </item>
  </channel>
</rss>

