<?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 Qlikview Performance in Connectivity &amp; Data Prep</title>
    <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlikview-Performance/m-p/1324211#M6725</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;Can Some one Help me how we can improve Qlikview Report \Document&amp;nbsp; Performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when some one move from one tab to another its taking more than a 1 minute to refresh in Qlikview Access point. and in Laptop version as well when i click on different tab cursor is rolling and after some time it is popping up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not only a Tab any selection they do in Report its taking Time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Your Information i just have data for 1 full year Plus current Year 2 Quarters. but in my in i have more variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Apr 2021 07:57:13 GMT</pubDate>
    <dc:creator>dunnalahk</dc:creator>
    <dc:date>2021-04-02T07:57:13Z</dc:date>
    <item>
      <title>Qlikview Performance</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlikview-Performance/m-p/1324211#M6725</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;Can Some one Help me how we can improve Qlikview Report \Document&amp;nbsp; Performance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when some one move from one tab to another its taking more than a 1 minute to refresh in Qlikview Access point. and in Laptop version as well when i click on different tab cursor is rolling and after some time it is popping up.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;not only a Tab any selection they do in Report its taking Time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Your Information i just have data for 1 full year Plus current Year 2 Quarters. but in my in i have more variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Apr 2021 07:57:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlikview-Performance/m-p/1324211#M6725</guid>
      <dc:creator>dunnalahk</dc:creator>
      <dc:date>2021-04-02T07:57:13Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Performance</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlikview-Performance/m-p/1324212#M6726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is not really the space for this question, but I will give a couple of quick pointers...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually the thing that kills apps most is having too much granularity in fields.&amp;nbsp; If you can round numbers so there are fewer possible values in a column, or drop the time from date/time fields, this can really help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Similarly, drop any whole columns that you don't need.&amp;nbsp; Every bit of data that is in-memory is taking resource and will slow things down a bit.&amp;nbsp; If it's not in use don't load it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check for inefficient expressions.&amp;nbsp; Big nested expressions can slow things down, anything with an IF in there could potentially be re-written with Set Analysis.&amp;nbsp; Try creating a new app with the data model but no visualisations on it.&amp;nbsp; What happens as you add (copy/paste) each visualisation back in.&amp;nbsp; Is there one which is worse than others?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sometimes it's just something silly and unexpected that can break an app.&amp;nbsp; Referencing the now() function in a variable is an example - because this refreshes every second, every selection that could be affected by that variable is recalculated every second.&amp;nbsp; Never use now() in the front end.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Calculation conditions can really help.&amp;nbsp; If you have any tables which could have more rows than a user is likely to comprehend put a calculation condition on it, based on a simple expression.&amp;nbsp; For instance, if you have a RowCounter field (which contains 1 on every row) you can have a calculation condition of &lt;STRONG&gt;sum(RowCounter) &amp;lt;= 10000&lt;/STRONG&gt;, and this would only draw the table if there are 10,000 or less rows in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the data model. Ensure all tables are joined only on the fields you expect.&amp;nbsp; Synthetic keys can kill performance (and give unexpected results).&amp;nbsp; Make sure that there are no data islands (tables that don't join to other tables) as Cartesian products are possible - and these are very bad news.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try breaking stuff down a bit.&amp;nbsp; What happens if you only load one month?&amp;nbsp; Does that help?&amp;nbsp; At what point is performance hit?&amp;nbsp; Can your users make do with less history?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chucking more RAM and CPU (especially RAM) at a problem will often help ease it - though it is seldom a silver bullet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You probably won't find your answer in the above, as it is all a bit general, but it may give you some jumping off points for things to Google and dig a bit deeper on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may also find some of my blog posts handy:&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.quickintelligence.co.uk/perfect-your-qlikview-data-model/" title="https://www.quickintelligence.co.uk/perfect-your-qlikview-data-model/"&gt;https://www.quickintelligence.co.uk/perfect-your-qlikview-data-model/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.quickintelligence.co.uk/qlikview-data-structures/" title="https://www.quickintelligence.co.uk/qlikview-data-structures/"&gt;https://www.quickintelligence.co.uk/qlikview-data-structures/&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that these thoughts help point you in the right direction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;BR /&gt;Steve&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2017 20:34:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlikview-Performance/m-p/1324212#M6726</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2017-06-20T20:34:22Z</dc:date>
    </item>
    <item>
      <title>Re: Qlikview Performance</title>
      <link>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlikview-Performance/m-p/1324213#M6727</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Further to Steve's many excellent points, one quick way to identify some problems is to use Settings | Sheet Properties and look for any object that seems to take a lot of time to calculate. Work back from there - it could be an AGGR() or a nested IF() but the data model may be the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Jun 2017 21:59:29 GMT</pubDate>
      <guid>https://community.qlik.com/t5/Connectivity-Data-Prep/Qlikview-Performance/m-p/1324213#M6727</guid>
      <dc:creator>roger_stone</dc:creator>
      <dc:date>2017-06-20T21:59:29Z</dc:date>
    </item>
  </channel>
</rss>

