<?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: difference in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/difference/m-p/1174058#M889965</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From Reference Manual: Look in the examples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add&lt;/P&gt;&lt;P&gt;The add prefix can be added to any Load (page 242), Select (SQL) (page 258) or Map ... using (page 250)&lt;/P&gt;&lt;P&gt;statement in the script. It is only relevant during partial reloads. During a partial reload the QlikView table,&lt;/P&gt;&lt;P&gt;for which a table name is generated by the add load/add select statement (provided such a table exists), will&lt;/P&gt;&lt;P&gt;be appended with the result of the add load/add select statement. No check for duplicates is performed.&lt;/P&gt;&lt;P&gt;Therefore, a statement using the add prefix will normally include either a distinct qualifier or a where clause&lt;/P&gt;&lt;P&gt;guarding duplicates. The map...using statement causes mapping to take place also during partial script&lt;/P&gt;&lt;P&gt;execution.&lt;/P&gt;&lt;P&gt;The syntax is:&lt;/P&gt;&lt;P&gt;add [only] (loadstatement |selectstatement |mapstatement)&lt;/P&gt;&lt;P&gt;where:&lt;/P&gt;&lt;P&gt;only is an optional qualifier denoting that the statement should be disregarded during normal (non-partial)&lt;/P&gt;&lt;P&gt;reloads.&lt;/P&gt;&lt;P&gt;Examples:&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;LOAD Name, Number FROM Persons.csv;&lt;/P&gt;&lt;P&gt;ADD LOAD Name, Number FROM newPersons.csv;&lt;/P&gt;&lt;P&gt;During normal reload, data is loaded from Persons.csv and stored in the QlikView table Tab1. Data from&lt;/P&gt;&lt;P&gt;NewPersons.csv is then concatenated to the same QlikView table. See concatenated.&lt;/P&gt;&lt;P&gt;During partial reload, data is loaded from NewPersons.csv and appended to the QlikView table Tab1. No&lt;/P&gt;&lt;P&gt;check for duplicates is made.&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;SELECT Name, Number FROM Persons.csv;&lt;/P&gt;&lt;P&gt;ADD LOAD Name, Number FROM NewPersons.csv Where not exists(Name);&lt;/P&gt;&lt;P&gt;A check for duplicates is made by means of looking if Name exists in the previously loaded table data (see&lt;/P&gt;&lt;P&gt;the function exists under exists(field [ , expression ] ) (page 324)).&lt;/P&gt;&lt;P&gt;During normal reload, data is loaded from Persons.csv and stored in the QlikView table Tab1. Data from&lt;/P&gt;&lt;P&gt;NewPersons.csv is then concatenated to the same QlikView table.&lt;/P&gt;&lt;P&gt;During partial reload, data is loaded from NewPersons.csv which is appended to the QlikView table Tab1. A&lt;/P&gt;&lt;P&gt;check for duplicates is made by means of seeing if Name exists in the previously loaded table data.&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;LOAD Name, Number FROM Persons.csv;&lt;/P&gt;&lt;P&gt;ADD ONLY LOAD Name, Number FROM NewPersons.csv Where not exists(Name);&lt;/P&gt;&lt;P&gt;During normal reload, data is loaded from Persons.csv and stored in the QlikView table Tab1. The statement&lt;/P&gt;&lt;P&gt;loading NewPersons.csv is disregarded.&lt;/P&gt;&lt;P&gt;216 QlikView 11.20 SR2, 11922&lt;/P&gt;&lt;P&gt;During partial reload, data is loaded from NewPersons.csv which is appended to the QlikView table Tab1. A&lt;/P&gt;&lt;P&gt;check for duplicates is made by means of seeing if Name exists in the previously loaded table data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Aug 2016 02:15:02 GMT</pubDate>
    <dc:creator>vishsaggi</dc:creator>
    <dc:date>2016-08-26T02:15:02Z</dc:date>
    <item>
      <title>difference</title>
      <link>https://community.qlik.com/t5/QlikView/difference/m-p/1174057#M889964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P class="Code"&gt;What is the difference between these two ?&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;Tab1:&lt;/P&gt;&lt;P class="Code"&gt;LOAD Name, Number FROM Persons.csv;&lt;/P&gt;&lt;P class="Code"&gt;ADD LOAD Name, Number FROM newPersons.csv;&lt;/P&gt;&lt;P class="Code"&gt;&lt;/P&gt;&lt;P class="Code"&gt;Tab1:&lt;/P&gt;&lt;P class="Code"&gt;LOAD Name, Number FROM Persons.csv;&lt;/P&gt;&lt;P class="Code"&gt;ADD ONLY LOAD Name, Number FROM NewPersons.csv;&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/difference/m-p/1174057#M889964</guid>
      <dc:creator>arethaking</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: difference</title>
      <link>https://community.qlik.com/t5/QlikView/difference/m-p/1174058#M889965</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;From Reference Manual: Look in the examples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Add&lt;/P&gt;&lt;P&gt;The add prefix can be added to any Load (page 242), Select (SQL) (page 258) or Map ... using (page 250)&lt;/P&gt;&lt;P&gt;statement in the script. It is only relevant during partial reloads. During a partial reload the QlikView table,&lt;/P&gt;&lt;P&gt;for which a table name is generated by the add load/add select statement (provided such a table exists), will&lt;/P&gt;&lt;P&gt;be appended with the result of the add load/add select statement. No check for duplicates is performed.&lt;/P&gt;&lt;P&gt;Therefore, a statement using the add prefix will normally include either a distinct qualifier or a where clause&lt;/P&gt;&lt;P&gt;guarding duplicates. The map...using statement causes mapping to take place also during partial script&lt;/P&gt;&lt;P&gt;execution.&lt;/P&gt;&lt;P&gt;The syntax is:&lt;/P&gt;&lt;P&gt;add [only] (loadstatement |selectstatement |mapstatement)&lt;/P&gt;&lt;P&gt;where:&lt;/P&gt;&lt;P&gt;only is an optional qualifier denoting that the statement should be disregarded during normal (non-partial)&lt;/P&gt;&lt;P&gt;reloads.&lt;/P&gt;&lt;P&gt;Examples:&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;LOAD Name, Number FROM Persons.csv;&lt;/P&gt;&lt;P&gt;ADD LOAD Name, Number FROM newPersons.csv;&lt;/P&gt;&lt;P&gt;During normal reload, data is loaded from Persons.csv and stored in the QlikView table Tab1. Data from&lt;/P&gt;&lt;P&gt;NewPersons.csv is then concatenated to the same QlikView table. See concatenated.&lt;/P&gt;&lt;P&gt;During partial reload, data is loaded from NewPersons.csv and appended to the QlikView table Tab1. No&lt;/P&gt;&lt;P&gt;check for duplicates is made.&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;SELECT Name, Number FROM Persons.csv;&lt;/P&gt;&lt;P&gt;ADD LOAD Name, Number FROM NewPersons.csv Where not exists(Name);&lt;/P&gt;&lt;P&gt;A check for duplicates is made by means of looking if Name exists in the previously loaded table data (see&lt;/P&gt;&lt;P&gt;the function exists under exists(field [ , expression ] ) (page 324)).&lt;/P&gt;&lt;P&gt;During normal reload, data is loaded from Persons.csv and stored in the QlikView table Tab1. Data from&lt;/P&gt;&lt;P&gt;NewPersons.csv is then concatenated to the same QlikView table.&lt;/P&gt;&lt;P&gt;During partial reload, data is loaded from NewPersons.csv which is appended to the QlikView table Tab1. A&lt;/P&gt;&lt;P&gt;check for duplicates is made by means of seeing if Name exists in the previously loaded table data.&lt;/P&gt;&lt;P&gt;Tab1:&lt;/P&gt;&lt;P&gt;LOAD Name, Number FROM Persons.csv;&lt;/P&gt;&lt;P&gt;ADD ONLY LOAD Name, Number FROM NewPersons.csv Where not exists(Name);&lt;/P&gt;&lt;P&gt;During normal reload, data is loaded from Persons.csv and stored in the QlikView table Tab1. The statement&lt;/P&gt;&lt;P&gt;loading NewPersons.csv is disregarded.&lt;/P&gt;&lt;P&gt;216 QlikView 11.20 SR2, 11922&lt;/P&gt;&lt;P&gt;During partial reload, data is loaded from NewPersons.csv which is appended to the QlikView table Tab1. A&lt;/P&gt;&lt;P&gt;check for duplicates is made by means of seeing if Name exists in the previously loaded table data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 02:15:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference/m-p/1174058#M889965</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2016-08-26T02:15:02Z</dc:date>
    </item>
    <item>
      <title>Re: difference</title>
      <link>https://community.qlik.com/t5/QlikView/difference/m-p/1174059#M889966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aretha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Add LOAD&lt;/STRONG&gt; would reload during Regular reload and Partial Reload&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;Add Only LOAD&lt;/STRONG&gt; would only reload during Partial Reload (by pass the table during regular reload)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;for more informaiton watch this video &lt;A href="http://qlikshare.com/370/" title="http://qlikshare.com/370/"&gt;http://qlikshare.com/370/&lt;/A&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #000000;"&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 02:17:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/difference/m-p/1174059#M889966</guid>
      <dc:creator>Siva_Sankar</dc:creator>
      <dc:date>2016-08-26T02:17:53Z</dc:date>
    </item>
  </channel>
</rss>

