<?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 Partial reload in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Partial-reload/m-p/1072748#M358172</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a scenario in which I have to load two tables from SQL server. In that one table is static and the another table I have to reload in frequent interval. Is partial reload is possible with SQL server tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; *&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to reload "table2". Do we have a option to do this in Qlikview. If so please share the suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jan 2016 14:04:42 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-01-12T14:04:42Z</dc:date>
    <item>
      <title>Partial reload</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-reload/m-p/1072748#M358172</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a scenario in which I have to load two tables from SQL server. In that one table is static and the another table I have to reload in frequent interval. Is partial reload is possible with SQL server tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM table1;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SQL SELECT&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt; *&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;FROM table2;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to reload "table2". Do we have a option to do this in Qlikview. If so please share the suggestions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jan 2016 14:04:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-reload/m-p/1072748#M358172</guid>
      <dc:creator />
      <dc:date>2016-01-12T14:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Partial reload</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-reload/m-p/1072749#M358173</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this out: &lt;A href="https://community.qlik.com/docs/DOC-8866"&gt;Qlik Sense Partial Reload for v2.0.x and v2.1.1&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Jan 2016 14:21:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-reload/m-p/1072749#M358173</guid>
      <dc:creator />
      <dc:date>2016-01-13T14:21:23Z</dc:date>
    </item>
    <item>
      <title>Re: Partial reload</title>
      <link>https://community.qlik.com/t5/QlikView/Partial-reload/m-p/1072750#M358174</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try this script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// data that needs to be load always&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// replace with first load statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// check to identify if full reload is needed&lt;/P&gt;&lt;P&gt;// a full reload is needed 1 time a day&lt;/P&gt;&lt;P&gt;if today() &amp;gt; date(ReloadLastFull) or ReloadFullForce='Yes' then &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; set ReloadType='Full';&lt;/P&gt;&lt;P&gt;ELSE&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set ReloadType='Partial';&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; set ReloadLast='Partial';&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // set the last partial reload &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; let ReloadLastPartial = LocalTime();&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; // exit point in case full reload is not neeeded&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; exit script when ReloadType='Partial'&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// data that should be load only 1 time a day &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// replace with second load statements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// set the variable to show how was the last reload&lt;/P&gt;&lt;P&gt;set ReloadLast='Full';&lt;/P&gt;&lt;P&gt;set ReloadFullForce='No';&lt;/P&gt;&lt;P&gt;// set the variable to show when was the last full load&lt;/P&gt;&lt;P&gt;let ReloadLastFull = Localtime();&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Mar 2016 15:53:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Partial-reload/m-p/1072750#M358174</guid>
      <dc:creator />
      <dc:date>2016-03-09T15:53:04Z</dc:date>
    </item>
  </channel>
</rss>

