<?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: Performance Issues - Pitch in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254203#M1293357</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The set analysis is not part of the aggregation - it's more a kind of two-step calculation in which the set analysis will be applied like a sql where-clause against the dataset - returning true or false - and only on the remaining records will be the aggregation calculated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it will be depend on various factors if this type of expression is the fasted one within your datamodel. Changes within the datamodel regarding to a star-scheme, snowflake-scheme or a big flat-table could make a big difference to the response-time form the UI - for example it could be useful to create flags for your most used and most heavier aggregations, like: sum(Value * Week1Flag). In each case you need to avoid string-comparings like '1' and use instead pure numeric values.&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, 16 Jan 2017 14:28:55 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2017-01-16T14:28:55Z</dc:date>
    <item>
      <title>Performance Issues - Pitch</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254196#M1293340</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are trying to compete against another Software with our Qlik knowledge and asking ourselves how Qlik works internally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What happens if I am using a set analysis like&lt;STRONG&gt; sum({&amp;lt;Week={'1'}&amp;gt;} Value)&lt;/STRONG&gt;? Is it like a part aggregation of the flat table or more a calculation on the whole table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which indexes are build on the data table if there are any? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Our data table has a few values, dimensions and especially dates. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;tuffelchen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 Jan 2026 18:19:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254196#M1293340</guid>
      <dc:creator />
      <dc:date>2026-01-26T18:19:17Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issues - Pitch</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254197#M1293343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in this case you will have sum of values only for week 1 (even if select any other week) and for current selection (click clear to clean it if you do not wish it)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anna&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 13:28:12 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254197#M1293343</guid>
      <dc:creator>annafuksa1</dc:creator>
      <dc:date>2017-01-16T13:28:12Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issues - Pitch</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254198#M1293344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's the question about the result but what is calculated and especially how it is calculated. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 13:29:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254198#M1293344</guid>
      <dc:creator />
      <dc:date>2017-01-16T13:29:58Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issues - Pitch</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254199#M1293346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the aggregation happens in the table on your dimension level.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Indexes are being build when reloading the script.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 13:48:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254199#M1293346</guid>
      <dc:creator>annafuksa1</dc:creator>
      <dc:date>2017-01-16T13:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issues - Pitch</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254200#M1293348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;so the sql statement 'select sum(Value) from&amp;nbsp; table group by Week where Week=1' or &lt;SPAN style="font-size: 13.3333px;"&gt;'select sum(Value) from&amp;nbsp; table where Week=1' is calculated?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 13:52:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254200#M1293348</guid>
      <dc:creator />
      <dc:date>2017-01-16T13:52:26Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issues - Pitch</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254201#M1293351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you will add Week as dimension then option 1 if no dimension option 2&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 14:09:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254201#M1293351</guid>
      <dc:creator>annafuksa1</dc:creator>
      <dc:date>2017-01-16T14:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issues - Pitch</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254202#M1293354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;option 1 will be exactly&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;'select &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;Week&lt;/SPAN&gt;,&amp;nbsp; sum(Value) from&amp;nbsp; table group by Week where Week=1' &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jan 2017 14:10:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254202#M1293354</guid>
      <dc:creator>annafuksa1</dc:creator>
      <dc:date>2017-01-16T14:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Performance Issues - Pitch</title>
      <link>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254203#M1293357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The set analysis is not part of the aggregation - it's more a kind of two-step calculation in which the set analysis will be applied like a sql where-clause against the dataset - returning true or false - and only on the remaining records will be the aggregation calculated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it will be depend on various factors if this type of expression is the fasted one within your datamodel. Changes within the datamodel regarding to a star-scheme, snowflake-scheme or a big flat-table could make a big difference to the response-time form the UI - for example it could be useful to create flags for your most used and most heavier aggregations, like: sum(Value * Week1Flag). In each case you need to avoid string-comparings like '1' and use instead pure numeric values.&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, 16 Jan 2017 14:28:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Performance-Issues-Pitch/m-p/1254203#M1293357</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2017-01-16T14:28:55Z</dc:date>
    </item>
  </channel>
</rss>

