<?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: Replace load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Replace-load/m-p/625801#M683920</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally we can use REPLACE Load in Partial Reloads. Please check the Help file some more info.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 10 Feb 2014 13:16:34 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-02-10T13:16:34Z</dc:date>
    <item>
      <title>Replace load</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-load/m-p/625799#M683918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is replace load, when do we use it ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 12:23:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-load/m-p/625799#M683918</guid>
      <dc:creator>marksmunich</dc:creator>
      <dc:date>2014-02-10T12:23:05Z</dc:date>
    </item>
    <item>
      <title>Re: Replace load</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-load/m-p/625800#M683919</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;from online help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;P&gt;The &lt;SPAN class="Bold"&gt;replace&lt;/SPAN&gt; prefix can be added to any &lt;A class="MCXref_0"&gt;&lt;EM&gt;Load&lt;/EM&gt;&lt;/A&gt;, &lt;A class="MCXref_0"&gt;&lt;EM&gt;Select (SQL)&lt;/EM&gt;&lt;/A&gt; or &lt;A class="MCXref_0"&gt;&lt;EM&gt;Map ... using&lt;/EM&gt;&lt;/A&gt; statement in the script. The &lt;SPAN class="Bold"&gt;replace load&lt;/SPAN&gt;/&lt;SPAN class="Bold"&gt;replace select&lt;/SPAN&gt; statement has the effect of dropping the entire QlikView table, for which a table name is generated by the &lt;SPAN class="Bold"&gt;replace load&lt;/SPAN&gt;/&lt;SPAN class="Bold"&gt;replace select&lt;/SPAN&gt; statement, and replacing it with a new table containing the result of the &lt;SPAN class="Bold"&gt;replace load&lt;/SPAN&gt;/&lt;SPAN class="Bold"&gt;replace select&lt;/SPAN&gt; statement. The effect is the same during &lt;A class="MCXref_0"&gt;&lt;EM&gt;Partial Reload&lt;/EM&gt;&lt;/A&gt; and full reload. The &lt;SPAN class="Bold"&gt;replace map...using&lt;/SPAN&gt; statement causes mapping to take place also during partial script execution. &lt;/P&gt;&lt;P&gt;The syntax is: &lt;/P&gt;&lt;P class="syntax"&gt;&lt;SPAN class="Bold"&gt;replace&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;[&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;only&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;]&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;(&lt;/SPAN&gt;&lt;SPAN class="Italic"&gt;loadstatement &lt;/SPAN&gt;|&lt;SPAN class="Italic"&gt;selectstatement &lt;/SPAN&gt;|&lt;SPAN class="Italic"&gt;map...usingstatement&lt;/SPAN&gt;&lt;SPAN class="Bold"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;where: &lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;only&lt;/SPAN&gt; is an optional qualifier denoting that the statement should be disregarded during normal (non-partial) reloads. &lt;/P&gt;&lt;P class="example"&gt;Examples:&lt;/P&gt;&lt;P class="Code"&gt;Tab1:&lt;/P&gt;&lt;P class="Code"&gt;Replace load * from File1.csv;&lt;/P&gt;&lt;P&gt;During both normal and partial reload, the QlikView table Tab1 is initially dropped. Thereafter new data is loaded from File1.csv and stored in Tab1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Tab1:&lt;/P&gt;&lt;P class="Code"&gt;Replace only load * from File1.csv;&lt;/P&gt;&lt;P&gt;During normal reload, this statement is disregarded. &lt;/P&gt;&lt;P&gt;During partial reload, any QlikView table previously named Tab1 is initially dropped. Thereafter new data is loaded from File1.csv and stored in Tab1. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Tab1:&lt;/P&gt;&lt;P class="Code"&gt;Load a,b,c from File1.csv;&lt;/P&gt;&lt;P class="Code"&gt;Replace load a,b,c from File2.csv;&lt;/P&gt;&lt;P&gt;During normal reload, the file File1.csv is first read into the QlikView table Tab1, but then immediately dropped and replaced by new data loaded from File2.csv. All data from File1.csv is lost. &lt;/P&gt;&lt;P&gt;During partial reload, the entire QlikView table Tab1 is initially dropped. Thereafter it is replaced by new data loaded from File2.csv. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P class="Code"&gt;Tab1:&lt;/P&gt;&lt;P class="Code"&gt;Load a,b,c from File1.csv;&lt;/P&gt;&lt;P class="Code"&gt;Replace only load a,b,c from File2.csv;&lt;/P&gt;&lt;P&gt;During normal reload, data is loaded from File1.csv and stored in the QlikView table Tab1. File2.csv is disregarded. &lt;/P&gt;&lt;P&gt;During partial reload, the entire QlikView table Tab1 is initially dropped. Thereafter it is replaced by new data loaded from File2.csv. All data from File1.csv is lost. &lt;/P&gt;&lt;P&gt;"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 12:25:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-load/m-p/625800#M683919</guid>
      <dc:creator>maxgro</dc:creator>
      <dc:date>2014-02-10T12:25:32Z</dc:date>
    </item>
    <item>
      <title>Re: Replace load</title>
      <link>https://community.qlik.com/t5/QlikView/Replace-load/m-p/625801#M683920</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Generally we can use REPLACE Load in Partial Reloads. Please check the Help file some more info.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Feb 2014 13:16:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Replace-load/m-p/625801#M683920</guid>
      <dc:creator />
      <dc:date>2014-02-10T13:16:34Z</dc:date>
    </item>
  </channel>
</rss>

