<?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: STORE after reload in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828532#M659568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jsanchezh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that should be possible by way of a PARTIAL RELOAD where only some parts of the script are executed during the reload and the ´memory is not completely emptied at the start of the script - but I have heard that function is still kind of whacky and doesn't always work.&lt;/P&gt;&lt;P&gt;A possibility would be if you run that app locally (not possible on server) and you can somehow implement your checks in the script itself, you could include some TRACE statements and generate an input box to ask you if you want to STORE the results or not.&lt;/P&gt;&lt;P&gt;Apart from that, I don't know any possibility.&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: The input box (it's a function) generates a variable out of your input. You could then use that variable to decide whether or not to execute the STORE command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Apr 2015 09:45:59 GMT</pubDate>
    <dc:creator>datanibbler</dc:creator>
    <dc:date>2015-04-14T09:45:59Z</dc:date>
    <item>
      <title>STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828531#M659567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to know if there is some way I can make a STORE after the script has been run succesfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I mean, imagine that I have a process which takes a lot of time to be reloaded and I'm doing some data processing in the script so I can't check it until it's finished. Once it has finished and I have checked the processing is correct, I would like to make an STORE from the "Fact" table without reloading the whole script with a STORE at the end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible? Any ideas?&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, 14 Apr 2015 09:42:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828531#M659567</guid>
      <dc:creator>jsanchezh</dc:creator>
      <dc:date>2015-04-14T09:42:26Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828532#M659568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi jsanchezh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that should be possible by way of a PARTIAL RELOAD where only some parts of the script are executed during the reload and the ´memory is not completely emptied at the start of the script - but I have heard that function is still kind of whacky and doesn't always work.&lt;/P&gt;&lt;P&gt;A possibility would be if you run that app locally (not possible on server) and you can somehow implement your checks in the script itself, you could include some TRACE statements and generate an input box to ask you if you want to STORE the results or not.&lt;/P&gt;&lt;P&gt;Apart from that, I don't know any possibility.&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;P.S.: The input box (it's a function) generates a variable out of your input. You could then use that variable to decide whether or not to execute the STORE command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 09:45:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828532#M659568</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T09:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828533#M659569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was going to put on the same path of using the &lt;STRONG&gt;Partial Reload &lt;/STRONG&gt;functionality. You can do something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IF not IsPartialReload() then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; your originalreload script with your fact table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDIF;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;IF IsPartialReload() then&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STORE FactTable into ..... qvd (qvd);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ENDIF;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 10:14:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828533#M659569</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-14T10:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828534#M659570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sunindia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;apparently you already got the PARTIAL RELOAD working?&lt;/P&gt;&lt;P&gt;I read up on it once, the trigger-words are "REPLACE" and "ADD" in front of a LOAD, no?`&lt;/P&gt;&lt;P&gt;Otherwise, how do you set the variable that the IsPartialReload() function queries?&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 10:51:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828534#M659570</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T10:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828535#M659571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have not tested this particular case where its been used for storing, but since you mentioned I am going to do a test load and come back to let you know if it worked or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 10:53:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828535#M659571</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-14T10:53:49Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828536#M659572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is working. PFA a sample qvw file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think since I am not LOADING a table, I don't need Add or Replace keywords. I am just using an existing table to store into a qvw and hence I don't need those keywords.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;HTH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 10:58:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828536#M659572</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-14T10:58:59Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828537#M659573</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;OK, I only ever tried with those keywords and it didn't work. But if you haven't got any keywords, how is that variable set that the function IspartialReload() queries? Somehow that has to be set to TRUE or FALSE. How is that done?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:03:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828537#M659573</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T11:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828538#M659574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So when you hit the &lt;STRONG&gt;Partial Reload&lt;/STRONG&gt; then it would tell the statement &lt;STRONG&gt;IF IsPartialReload() then &lt;/STRONG&gt;to be TRUE and when you do a &lt;STRONG&gt;Regular Reload&lt;/STRONG&gt; it would tell it to be FALSE. At least that's how I interpret it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:05:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828538#M659574</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-14T11:05:46Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828539#M659575</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 don't know that there is an option to reload the script only partially. How can I do that? The regular reload is triggered by hitting Ctrl+R, and the partial one?&lt;/P&gt;&lt;P&gt;Does the user have to decide at the outset what to do?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:10:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828539#M659575</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T11:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828540#M659576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use Ctrl + Shift + R or you can use the file menu to do it. Take a look at the image below:&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Partial Reload.png" class="jive-image image-1" src="/legacyfs/online/83607_Partial Reload.png" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:14:05 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828540#M659576</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-14T11:14:05Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828541#M659577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah. Thanks!&lt;/P&gt;&lt;P&gt;That is a good possibility.&lt;/P&gt;&lt;P&gt;And the partial reload keeps all the previously loaded tables in memory?&lt;/P&gt;&lt;P&gt;That's something new to me. Good to know. Then those keywords aren't necessary because when you give a new table a name that already exists, that table will be overwritten and if you have something to concatenate to an existing table, you can use the CONCATENATE () keyword.&lt;/P&gt;&lt;P&gt;Great!&lt;/P&gt;&lt;P&gt;Thanks a lot!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:19:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828541#M659577</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T11:19:02Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828542#M659578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is not true. Anytime you have a load statement you want to use during partial reload, you need a Add or Replace statement otherwise QV will skip the table even with the IF IsPartialLoad() statement in place.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:21:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828542#M659578</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-14T11:21:18Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828543#M659579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have posted a qvw file which you might find useful. Have a look here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.qlik.com/message/745150"&gt;Re: Is that possible to Append/Add data to QlikView Application based on user request.&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:23:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828543#M659579</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-14T11:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828544#M659580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ah,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so the two have to go together,&lt;/P&gt;&lt;P&gt;- the ISPARTIALRELOAD() query at the beginning to enter into one of two branches&lt;/P&gt;&lt;P&gt;- the keywords ADD or REPLACE&lt;/P&gt;&lt;P&gt;?&lt;/P&gt;&lt;P&gt;I didn't know that.&lt;/P&gt;&lt;P&gt;But any previously loaded tables are kept in memory, aren't they?&lt;/P&gt;&lt;P&gt;I'll test that.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DataNibbler&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:30:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828544#M659580</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T11:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828545#M659581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Cool!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At first it didn't work at all - but in that app, there was a BINARY LOAD before that construct.&lt;/P&gt;&lt;P&gt;It also seems that you have to query the&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt; NOT ISPARTIALRELOAD() &amp;lt;&amp;lt; first and then the &amp;gt;&amp;gt; ISPARTIALRELOAD() &amp;lt;&amp;lt;, no?&lt;/P&gt;&lt;P&gt;When I tried on a small dummy file with the ADD keyword, it worked that way round.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:47:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828545#M659581</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T11:47:36Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828546#M659582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Hi&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;if you hit the &lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Partial Reload&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; then it would tell the statement &lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;IF IsPartialReload() then &lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;to be TRUE and when you do a &lt;/SPAN&gt;&lt;STRONG style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Regular Reload&lt;/STRONG&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt; it would tell it to be FALSE. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Reagrds,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Nagarjuna&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:54:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828546#M659582</guid>
      <dc:creator>nagarjuna_kotha</dc:creator>
      <dc:date>2015-04-14T11:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828547#M659583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is a cool tool for the development process.&lt;/P&gt;&lt;P&gt;When you have a script that takes a while to reload and you can tell exactly where there is an error, you only need to reload that bit - so you use that PartialReload() functionality and write the REPLACE keyword just in front of that one LOAD. That way all the others will remain untouched and the whole thing will be a lot faster.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 11:59:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828547#M659583</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T11:59:26Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828548#M659584</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So let me take a shot at explaining the whole partial reload thing. Lets look at different scenarios:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Scenario 1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM xyz;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;Resident Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DROP Table Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do a partial reload first two table loads will not be loaded (since they don't have Add or Replace next to them), but the &lt;STRONG&gt;DROP Table Table&lt;/STRONG&gt; statement will execute. Similarly regular or partial reload DROP, LET, SET statements will always run unless you have a &lt;STRONG&gt;IF IsPartialReload()&lt;/STRONG&gt; Statement to stop them from running.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Scenario 2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Table:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Add LOAD *&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;FROM xyz;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Table1:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;NoConcatenate&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Add LOAD *&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Resident Table;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;DROP Table Table;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both tables will only run when you do a partial reload and won't run on the regular reload, but the DROP statement will during the regular reload giving you an error that Table doesn't exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Scenario 3:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Table:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;LOAD *&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;FROM xyz;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG style="font-size: 13.3333330154419px;"&gt;IF IsPartialReload then &lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Table1:&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; NoConcatenate&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Add LOAD *&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Resident Table;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DROP Table Table;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;STRONG&gt;ENDIF;&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Now the DROP statement will only run when you are doing a partial reload. To answer your question, &lt;STRONG&gt;the tables loaded through a regular reload can be accessed (concatenated to, joined to, resident from, keep to) during the partial reload.&lt;/STRONG&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I hope this would clarify a lot of your doubts (if not all)&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Best,&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;Sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:29:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828548#M659584</guid>
      <dc:creator>sunny_talwar</dc:creator>
      <dc:date>2015-04-14T12:29:22Z</dc:date>
    </item>
    <item>
      <title>Re: STORE after reload</title>
      <link>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828549#M659585</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sunindia,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;indeed that clarifies a lot!&lt;/P&gt;&lt;P&gt;So if I want the first table to be loaded on a regular reload, but not the second one, while the second one (both in fact) is only loaded in a partial reload, I have to use that IsPartialReload() clause. Otherwise, I can only have both table load on a regular reload or none. At least that seems to be the case. I just tried.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 12:36:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/STORE-after-reload/m-p/828549#M659585</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2015-04-14T12:36:56Z</dc:date>
    </item>
  </channel>
</rss>

