<?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: Why Partial Reload script? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539381#M747155</link>
    <description>&lt;P&gt;But I am doing full reload for my qvw through autosys job every day.&lt;/P&gt;&lt;P&gt;My concern is, how come Partial Reload will come into picture? Why Partial reload is written in the script?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 05 Feb 2019 05:28:46 GMT</pubDate>
    <dc:creator>poonam_kulwal</dc:creator>
    <dc:date>2019-02-05T05:28:46Z</dc:date>
    <item>
      <title>Why Partial Reload script?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539232#M747153</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;T1:&lt;BR /&gt;&lt;STRONG&gt;Load&lt;/STRONG&gt; * inline&lt;BR /&gt;[EmployeKey,FirstName];&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;BR /&gt;//===Part 1&lt;BR /&gt;&lt;STRONG&gt;for&lt;/STRONG&gt; Each &lt;STRONG&gt;&lt;EM&gt;vMonth&lt;/EM&gt;&lt;/STRONG&gt; in &lt;STRONG&gt;&lt;EM&gt;$(vMonthList)&lt;/EM&gt;&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;if&lt;/STRONG&gt; filetime('..\Partial Reload\Employee_$(vMonth).xlsx') &amp;lt;&amp;gt; null &lt;STRONG&gt;then&lt;/STRONG&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Concatenate(T1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;LOAD&lt;/STRONG&gt; EmployeKey,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;FirstName&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [..\Partial Reload\Employee_$(vMonth).xlsx]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (ooxml, embedded labels, table is Sheet1);&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;ENDIF&lt;/STRONG&gt;&lt;BR /&gt;&lt;STRONG&gt;next&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;//===Part 2&lt;BR /&gt;&lt;STRONG&gt;if&lt;/STRONG&gt; filetime('..\Partial Reload\Employee_$(previousMonth).xlsx') &amp;lt;&amp;gt; null &lt;STRONG&gt;then&lt;/STRONG&gt;&amp;nbsp;&lt;BR /&gt;ADD ONLY &lt;STRONG&gt;LOAD&lt;/STRONG&gt; EmployeKey,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;FirstName&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [..\Partial Reload\Employee_$(previousMonth).xlsx]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where not Exists(EmployeKey);&lt;BR /&gt;&lt;STRONG&gt;ENDIF&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;//===Part 3&lt;BR /&gt;&lt;STRONG&gt;if&lt;/STRONG&gt; filetime('..\Partial Reload\Employee_$(thisMonth).xlsx') &amp;lt;&amp;gt; null &lt;STRONG&gt;then&lt;/STRONG&gt;&lt;BR /&gt;ADD ONLY &lt;STRONG&gt;LOAD&lt;/STRONG&gt; EmployeKey,&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;FirstName&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; FROM&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [..\Partial Reload\Employee_$(thisMonth).xlsx]&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; (ooxml, embedded labels, table is Sheet1)&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; where not Exists(EmployeKey) ;&lt;BR /&gt;&lt;STRONG&gt;ENDIF&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have difficulty understanding significance of above script.&lt;/P&gt;&lt;P&gt;Part 1 does load all excel files from the specified directory including thisMonth and previousMonth .&lt;/P&gt;&lt;P&gt;Then why Part 2 and Part 3 has been written in the script.&lt;/P&gt;&lt;P&gt;Isn’t it loading thisMonth and previousMonth files again with check for duplicate values?&amp;nbsp;&lt;/P&gt;&lt;P&gt;I know it is a Partial reload and it will execute only when script is executed using Ctr+Shift+R.&lt;/P&gt;&lt;P&gt;I have a autosys job that does reload of my qvw file (means full reload). Then how Partial Reload script will come into picture?&lt;/P&gt;&lt;P&gt;What is the significance of writing down Partial Reload in the above script (although I am doing full load all the time)?&lt;/P&gt;&lt;P&gt;This is sample script. Actual qvw is 2 GB in size.&lt;/P&gt;&lt;P&gt;&amp;nbsp;Appreciate your explanation on above.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Poonam&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 16 Nov 2024 04:33:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539232#M747153</guid>
      <dc:creator>poonam_kulwal</dc:creator>
      <dc:date>2024-11-16T04:33:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why Partial Reload script?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539380#M747154</link>
      <description>The reason for implementing partial reload is mainly to reduce reload times, you don't need to reload all tables in the whole script. It is also possible to add an early exit script to avoid reading through the whole thing.&lt;BR /&gt;&lt;BR /&gt;I think you have misunderstood your script. Part 1 does not execute when you do a partial reload only new EmployeKey rows in part 2 and part 3 are added to your datamodel.&lt;BR /&gt;&lt;BR /&gt;Partial reload executes only statements preceded by Replace or Add prefix such as ADD LOAD. Other data tables, with normal LOAD remain unaffected by the command.&lt;BR /&gt;</description>
      <pubDate>Tue, 05 Feb 2019 05:04:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539380#M747154</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-02-05T05:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Why Partial Reload script?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539381#M747155</link>
      <description>&lt;P&gt;But I am doing full reload for my qvw through autosys job every day.&lt;/P&gt;&lt;P&gt;My concern is, how come Partial Reload will come into picture? Why Partial reload is written in the script?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 05 Feb 2019 05:28:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539381#M747155</guid>
      <dc:creator>poonam_kulwal</dc:creator>
      <dc:date>2019-02-05T05:28:46Z</dc:date>
    </item>
    <item>
      <title>Re: Why Partial Reload script?</title>
      <link>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539382#M747156</link>
      <description>My guess is that the partial reload is created my a developer that wanted&lt;BR /&gt;to reduce load duration during development.&lt;BR /&gt;&lt;BR /&gt;For normal reload it will not have any effect (except for a slightly&lt;BR /&gt;increased load duration hence you are looking through two sheets an extra&lt;BR /&gt;time)&lt;BR /&gt;</description>
      <pubDate>Tue, 05 Feb 2019 05:40:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Why-Partial-Reload-script/m-p/1539382#M747156</guid>
      <dc:creator>Vegar</dc:creator>
      <dc:date>2019-02-05T05:40:53Z</dc:date>
    </item>
  </channel>
</rss>

