<?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: Optimized LOAD - EXISTS, but no NOT(EXISTS())? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69572#M607607</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can handle it while creating qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use preceding load in extractor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2018 11:22:26 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2018-04-06T11:22:26Z</dc:date>
    <item>
      <title>Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69568#M607603</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 am trying to improve the performance of an app by trying to turn some LOADs into optimized LOADs and stuff.&lt;/P&gt;&lt;P&gt;I managed to take some time off the script-duration by replacing one RESIDENT_LOAD with a PRECEDING_LOAD and another one with a temporarily stored qvd_file - I might look at the possibility of having another PRECEDING_LOAD to replace that, too.&lt;/P&gt;&lt;P&gt;Now I have one more LOAD from a qvd-file with a filter applied, currently through an APPLYMAP - what this does is filter out several (currently two) values coming from an Excel file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;=&amp;gt; The issue now is, an optimized LOAD from qvd allows an EXISTS() clause - but I want to EXclude the values in this Excel file - is there any possibility of inserting a NOT(EXISTS()) clause and still have an optimized LOAD or will I have to go the other way and first extract a listing of all possible values from somewhere and then INclude all of those (save those that should be filtered out)?&lt;/P&gt;&lt;P&gt;&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>Fri, 06 Apr 2018 10:50:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69568#M607603</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2018-04-06T10:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69569#M607604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You could also use: where not exists(Field); to keep the load optimized because exists() just returned TRUE or FALSE and NOT will reverse this result. But you might need some further measures to get it working which could be slightly different to a pure exists() which rather worked like a white-listing and now you need a black-listing ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 11:03:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69569#M607604</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-04-06T11:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69570#M607605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Adding NOT will not changed the optimized load.&amp;nbsp; That is, if "Exists(Key)" gives you an optimized load, then "NOT Exists(Key)" will as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 11:12:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69570#M607605</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2018-04-06T11:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69571#M607606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That should work, I'll try out.&lt;/P&gt;&lt;P&gt;There is another issue, though: One of the fields in the table is transformed to a string using the TEXT() function. That would probably make the LOAD non-optimized again. I'll have a look to see whether and how I can avoid 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>Fri, 06 Apr 2018 11:18:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69571#M607606</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2018-04-06T11:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69572#M607607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can handle it while creating qvd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use preceding load in extractor.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 11:22:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69572#M607607</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2018-04-06T11:22:26Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69573#M607608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don`t quite get it - now I have a LOAD without any transformation of fields, only an EXISTS() clause at the end - I have just left out that TEXT() thingy, just to try - and still it is non-optimized.&lt;/P&gt;&lt;P&gt;The code is simple, just&lt;/P&gt;&lt;P&gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; blablubb,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; blubberbla,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; [more fields]&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;[path to qvd] (qvd)&lt;/P&gt;&lt;P&gt;WHERE EXISTS([what to look for], [in field])&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&amp;lt;&lt;/P&gt;&lt;P&gt;(and prior to that I load from an Excel file currently two records which should later be excluded)&lt;/P&gt;&lt;P&gt;What could be the reason that this LOAD is still unoptimized?&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>Fri, 06 Apr 2018 11:27:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69573#M607608</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2018-04-06T11:27:44Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69574#M607609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello&lt;/P&gt;&lt;P&gt;in v12, it works with not exists, it was not the case in v10&lt;/P&gt;&lt;P&gt;but even in v12, it doesn't work if the two parameters don't have the same name&lt;/P&gt;&lt;P&gt;so WHERE EXISTS([what to look for], [in field]) isn't optimized&lt;/P&gt;&lt;P&gt;but&amp;nbsp; WHERE EXISTS([in field])&amp;nbsp; or WHERE EXISTS([in field],[in field]) will work&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 12:08:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69574#M607609</guid>
      <dc:creator>olivierrobin</dc:creator>
      <dc:date>2018-04-06T12:08:36Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69575#M607610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Only exists() with a single parameter will keep the optimized load because everything else will force a processing of the data which meant that the data couldn't directly transferred into the RAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This meant you need some more efforts to get the right fieldnames ... Beside developing the whole load-approach at the beginning in this way it's often useful to use RENAME to adjust the approach to the right fieldnames, for example with something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;rename field [in field] to [what to look for];&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;where exists([what to look for]);&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Depending on the complexity of your load you might need several of such from and to renamings and/or creating of appropriate white/blacklist for the exists(). Therefore you should consider if a different load-order and/or using a more granular multi-layer approach might not easier to handle - maybe not by creating but if it comes to mainaining it will ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 12:31:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69575#M607610</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-04-06T12:31:18Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69576#M607611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm ... the issue is, I need that TEXT() transformation on the original qvd - it comes from an EXTRACTOR which a colleague has done in SAP with no transformations applied. I cannot access that.&lt;/P&gt;&lt;P&gt; That transformation means I cannot get that LOAD optimized anyway. For some reason, that last LOAD - there is a JOIN involved - now takes longer than it used to, outweighing all performance improvements I have achieved on the script so far ;-(&lt;/P&gt;&lt;P&gt;I'll have another look into it and if I can`t get that straight today, I`ll just leave it as it is.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 12:43:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69576#M607611</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2018-04-06T12:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69577#M607612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm ... I guess the network is not extremely fast, so replacing any RESIDENT Loads by first saving a temporary file to qvd and then loading it again does not improve overall performance a lot (or next to nothing) because saving the temporary file takes so long ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 13:16:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69577#M607612</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2018-04-06T13:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69578#M607613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It sounds that there are multiple bottlenecks in your environment ... maybe you could merge some of the transformations into lesser load-steps and/or implementing any respectively more incremental approaches. But without using an appropriate multi-layer environment on modern hardware with local ssd-drives it will be far away from the potential performances.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 13:38:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69578#M607613</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-04-06T13:38:24Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69579#M607614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm afraid you're right. We do have a multilayer environment here (there are extractors, several transform_steps, a datamodel_layer and finally the GUI) and I have a decent notebook here with 16GB of RAM, but I don't know about the server hardware and network - well, I can tell from the QMC that the QVS has 8 CPUs ... and I have the application locally, but not the data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Not good ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Well, I guess there's not too much I can do in that script. I'll have a look at a different one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2018 14:01:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69579#M607614</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2018-04-06T14:01:08Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69580#M607615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm ... the QMC tells me that this particular transformation step usually takes about 12 minutes to finish on the server - at night. That surprises me a bit because when I ran it locally on Friday, it took about 6 minutes (and it had to transfer the data back and forth).&lt;/P&gt;&lt;P&gt;Still, it seems worthwhile to look at that script once again as it seems to be the longest-running step in that entire report (there are two more transformations which take about 5sec each, a datamodel and a GUI which take about 2min). Sometimes, when looking at the same thing for the 100th time, you suddenly see something that you overlooked 99 times ...&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2018 09:05:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69580#M607615</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2018-04-09T09:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69581#M607616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There could be various causes to why a certain load-process is faster on one machine and slower on the other, for example the available resources, parallel running tasks, storage/network-speed, possible CPU frequencies in regard to single/multi-thread executions, the "age" of your hardware and probably there are some more reasons ... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2018 09:52:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69581#M607616</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-04-09T09:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69582#M607617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK.&lt;/P&gt;&lt;P&gt;I'll close this thread now. From what I have seen so far, it seems that just about every app there is takes about twice as long to run on the server as compared to my local notebook &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Optimizing performance is not easy when every temporary STORE takes ages and saving space is not easy, either as all the data is required by various people to always be there to look into without spending any time reloading.&lt;/P&gt;&lt;P&gt;So, for the time being, it seems there`s nothing I can do. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Apr 2018 08:19:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69582#M607617</guid>
      <dc:creator>datanibbler</dc:creator>
      <dc:date>2018-04-12T08:19:33Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69583#M607618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are definitely environmental considerations that may not be fully understood, or documented, that are capable of inhibiting QVD load optimization &lt;EM&gt;(even when all conditions conducive to optimization are present)&lt;/EM&gt;.&amp;nbsp; This may be giving some of our users false-readings &lt;EM&gt;(myself included).&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I have seen QVD occasionally stop reporting optimization, even when read stand-alone with no transformation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, as has been mentioned, using NOT EXISTS() with two different field name arguments is working optimized for me &lt;STRONG&gt;&lt;EM&gt;at the present moment.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I wanted to use this very same technique last week, and using NOT EXISTS &lt;EM&gt;(with no transformation beyond an alias)&lt;/EM&gt; and it was definitely deactivating the optimization.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;[FILTER]&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;FILTER&lt;/SPAN&gt; &lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;FROM&lt;/SPAN&gt; &lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;[FILTER.QVD]&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;);&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: green; font-family: 'Courier New'; font-size: 9pt;"&gt;//on the latest test 4/16/2018, this syntax with two different field names passed as arguments to NOT EXISTS performed as optimized load&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;[FACT]&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;:&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-size: 9pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/SPAN&gt; &lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;TARGET_FIELD&lt;/SPAN&gt; &lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;FROM&lt;/SPAN&gt; &lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;[FACT.QVD]&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt; (&lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;)&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;WHERE&lt;/SPAN&gt; &lt;SPAN style="color: blue; font-family: 'Courier New'; font-size: 9pt;"&gt;NOT EXISTS&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;FILTER&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;, &lt;/SPAN&gt;&lt;SPAN style="color: maroon; font-family: 'Courier New'; font-size: 9pt;"&gt;TARGET_FIELD&lt;/SPAN&gt;&lt;SPAN style="color: black; font-family: 'Courier New'; font-size: 9pt;"&gt;);&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: green; font-family: 'Courier New'; font-size: 9pt;"&gt;//However, there have been many examples observed where the sole transformation was passing two different field names to NOT EXISTS and this deactivated the optimized load &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Times New Roman; font-size: 12pt;"&gt;&amp;nbsp; &lt;SPAN style="color: #000000; font-size: 12pt; font-family: Times New Roman;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is something else at play here, something creating inconsistency in our end-user experience.&amp;nbsp; &lt;EM&gt;(not sure if this could be impacted by things that happen in earlier parts of scripts?&amp;nbsp; environmental issues?)&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Apr 2018 17:14:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69583#M607618</guid>
      <dc:creator>evan_kurowski</dc:creator>
      <dc:date>2018-04-16T17:14:35Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69584#M607619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;AFAIK applying a where exists clause with two parameters won't never result in an optimized load. At least I have never seen it whereby I didn't tried every possible combination and there might be something undocumented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the important point will be if any data-processing on the row-level is necessary or not. This meant a renaming of a field for example is just applied to the xml-header on the column-level. Also on column-level happens the writing of the fieldvalues within the symboltables and only a new fieldvalue will be there stored - this meant there happens always an exists-check and therefore a where exists-clause will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But there are further dependencies for example if tables are concatenated both explicitly per statement and also by automatic concatenations if for instant statements like DISTINCT are included (which always effect all merging loadings): &lt;A href="https://community.qlik.com/docs/DOC-2641"&gt;Turning Unoptimized Loads into Optimized Loads&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Beside this I could imagine that various settings like those in the easter egg like various caching-settings and also some configuration within the OS and/or VM might have side-effects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2018 07:52:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69584#M607619</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2018-04-17T07:52:21Z</dc:date>
    </item>
    <item>
      <title>Re: Optimized LOAD - EXISTS, but no NOT(EXISTS())?</title>
      <link>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69585#M607620</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Marcus, those are good points identifying potential causes, originating from both syntax and external effects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Checking for impacts from distinction, or multi-table contributions merging on a field makes sense.&amp;nbsp; It's effects from cache, vm, or os that have me concerned.&amp;nbsp; Sands could be shifting under the script's feet if those environmental settings weren't assured to remain static.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You always have great advice, thank you!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Apr 2018 23:12:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Optimized-LOAD-EXISTS-but-no-NOT-EXISTS/m-p/69585#M607620</guid>
      <dc:creator>evan_kurowski</dc:creator>
      <dc:date>2018-04-17T23:12:56Z</dc:date>
    </item>
  </channel>
</rss>

