<?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: optimization qlikview application in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076693#M359147</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With 15 tables 15 minutes is not necessarily bad. But again that depends one the number of rows there are in each table.&lt;/P&gt;&lt;P&gt;How many rows do you get per minute? Any difference in rows per minute between the tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 20 Feb 2016 08:30:43 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2016-02-20T08:30:43Z</dc:date>
    <item>
      <title>optimization qlikview application</title>
      <link>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076689#M359143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru's&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Currently my qv application taking around 15 mins to reload,How can I reduce my reload time.&lt;/P&gt;&lt;P&gt;We are using exist,qualify and unqualify, Applymap&amp;nbsp; etc. functions in qlikview and also have unused field,is this functions and &lt;SPAN style="font-size: 13.3333px;"&gt;fields &lt;/SPAN&gt;take more time to reload .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls suggest me how can I reduce my reload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In any help that would be grateful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sateesh.T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2016 06:27:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076689#M359143</guid>
      <dc:creator>sat_tok52</dc:creator>
      <dc:date>2016-02-20T06:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: optimization qlikview application</title>
      <link>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076690#M359144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have more information to share it would be much easier to give you specific advice:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) What kind of source or sources are you drawing data from?&lt;/P&gt;&lt;P&gt;2) How many different tables do you load from? How many columns from each and what kind of columns?&lt;/P&gt;&lt;P&gt;3) Are you doing any SQL as a part of the LOADs? Is it simple SQL SELECT without any joins?&lt;/P&gt;&lt;P&gt;4) Are the SQLs reading entire tables without any WHERE clauses?&lt;/P&gt;&lt;P&gt;5) How is the infrastructure between your QlikView installation and the sources - network bandwidth.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if you can't give us answers to these questions - they are factors you should consider or possibly discuss with people that know about these factors in your project.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2016 06:49:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076690#M359144</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-02-20T06:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: optimization qlikview application</title>
      <link>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076691#M359145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In general the most effect on reload time comes from:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Having a high performant source to read data from&lt;/P&gt;&lt;P&gt;2) Reducing the number of columns that are read&lt;/P&gt;&lt;P&gt;3) Having simple SQL SELECTs that doesn't contain complex JOINS&lt;/P&gt;&lt;P&gt;4) If there are more sophisticated SELECTs being used make sure that the backend SQL DB has proper indexes that supports high-speed querying.&lt;/P&gt;&lt;P&gt;5) Make sure that you only get data that you need. Get rid of the data you don't need as early as possible in your data logistics chain.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; a) Leave out columns you don't need immediately and avoid using SQL SELECT &lt;STRONG&gt;*&lt;/STRONG&gt; FROM megaTable. (same as 1)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; b) Leave out rows you don't need immediately and use for example&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SQL SELECT x,y, z FROM megaTable &lt;STRONG&gt;WHERE x=xxx AND y=yyyy&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;6) Using QlikViews own load script JOINS might be costly in performance if you have big tables that need to be joined.&lt;/P&gt;&lt;P&gt;7) Using ApplyMap() is generally good.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt; Doing calculated fields in your LOAD statement is not costly - so don't worry too much about that.&lt;/P&gt;&lt;P&gt;9) Reducing the granularity of every column that is read to the necessary resolution can be extremely important.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For instance if you read date-time type of columns and only need to do analysis down to every 15 minutes make&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sure that you round-off or truncate the columns that are turned into fields by using Floor(), Ceil() or Round() on them&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; to leave out unnecessary precision - this can potentially save a lot of memory and increase speed a lot.&lt;/P&gt;&lt;P&gt;10) Find out which of your loads take most time and focus on reducing time for those first.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2016 07:01:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076691#M359145</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-02-20T07:01:00Z</dc:date>
    </item>
    <item>
      <title>Re: optimization qlikview application</title>
      <link>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076692#M359146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Petter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your valuable information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Database:Sql,&lt;/P&gt;&lt;P&gt;connector using:ODBC,&lt;/P&gt;&lt;P&gt;15 &lt;SPAN style="font-size: 13.3333px;"&gt;qvd's &lt;/SPAN&gt; we are using and have where conditions and exist function.&lt;/P&gt;&lt;P&gt;We are using concatenation more than joins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sateesh.T&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2016 07:54:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076692#M359146</guid>
      <dc:creator>sat_tok52</dc:creator>
      <dc:date>2016-02-20T07:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: optimization qlikview application</title>
      <link>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076693#M359147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;With 15 tables 15 minutes is not necessarily bad. But again that depends one the number of rows there are in each table.&lt;/P&gt;&lt;P&gt;How many rows do you get per minute? Any difference in rows per minute between the tables?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2016 08:30:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076693#M359147</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-02-20T08:30:43Z</dc:date>
    </item>
    <item>
      <title>Re: optimization qlikview application</title>
      <link>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076694#M359148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Concatenation should not be a problem when it comes to performance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 20 Feb 2016 08:34:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/optimization-qlikview-application/m-p/1076694#M359148</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2016-02-20T08:34:58Z</dc:date>
    </item>
  </channel>
</rss>

