<?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: Faster QVD ? Optimised or Unoptimised QVD in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406279#M812639</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah I got it. Instead of creating resident , I can use apply map function where ever required. &lt;/P&gt;&lt;P&gt;Thanks Man!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Sep 2017 11:10:33 GMT</pubDate>
    <dc:creator>pradeep92</dc:creator>
    <dc:date>2017-09-26T11:10:33Z</dc:date>
    <item>
      <title>Faster QVD ? Optimised or Unoptimised QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406275#M812635</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 have a question with, say 2 scenarios :&lt;/P&gt;&lt;P&gt;1.Large data set projects&lt;/P&gt;&lt;P&gt;2.minimal data set projects eg: 1lakh records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which load is faster and better with its performance ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am actually trying to load from qvds,perform join and take a resident of it with performing some calculations in it and use that table in data model. Is that right ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from tab1&amp;nbsp; // optimised&lt;/P&gt;&lt;P&gt;leftjoin&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;from tab2; //optimised&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tab 3:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;unit*price as quantity;&lt;/P&gt;&lt;P&gt;resident&lt;/P&gt;&lt;P&gt;table1;&lt;/P&gt;&lt;P&gt;drop table table1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406275#M812635</guid>
      <dc:creator>pradeep92</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Faster QVD ? Optimised or Unoptimised QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406276#M812636</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Few of the main points to be taken for understand the architecture of the Qlikview.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Follow the Qlikview Architecture.&lt;/P&gt;&lt;P&gt;2. Loading data from the QVD is faster that any load. Ex:- Try to create the Qvds of the Main Tables (Transactions, Incremental, Masters etc).&lt;/P&gt;&lt;P&gt;3. What ever no. of rows you have qlikview read millions of the data in very fast and quickly depends on the hardware arch also here.&lt;/P&gt;&lt;P&gt;4. Maintain proper data modelling concept (STAR, SNOWFLAKE) what ever is required use that.&lt;/P&gt;&lt;P&gt;5. Always keep meaning full fields, Keys and drop those are not required to you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:-&lt;/P&gt;&lt;P&gt;table1:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load * from tab1&amp;nbsp; // optimised&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;leftjoin(&lt;SPAN style="font-size: 13.3333px;"&gt;table1&lt;/SPAN&gt;)&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load * from tab2; //optimised&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;tab_3:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;load * unit * price as quantity resident table1;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;drop table table1;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2017 12:07:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406276#M812636</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2017-09-25T12:07:00Z</dc:date>
    </item>
    <item>
      <title>Re: Faster QVD ? Optimised or Unoptimised QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406277#M812637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Anand. Can you just tell me which QVDS will get loaded faster ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2017 12:51:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406277#M812637</guid>
      <dc:creator>pradeep92</dc:creator>
      <dc:date>2017-09-25T12:51:40Z</dc:date>
    </item>
    <item>
      <title>Re: Faster QVD ? Optimised or Unoptimised QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406278#M812638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pradeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It depends which qvd the unit and price fields are in. &lt;/P&gt;&lt;P&gt;I tend to avoid using load* in a script and prefer to use the full list of field names, listing all fields makes debugging code much easier and gives you the option to easily remove unwanted fields by commenting them out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If unit and price are in the same table, it may be better to do the calculation directly from the qvd, thus making the load not optimised, but this saves doing the extra resident load and drop table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also depending on how many fields you need for the table you are joining - using applymap instead of join may perform better.&amp;nbsp; See this post &lt;A href="https://community.qlik.com/qlik-blogpost/2756"&gt;Don't join - use Applymap instead&lt;/A&gt;&amp;nbsp; In some cases I will use 5 or more applymap commands rather than joins, often with several mapping tables being created from the same base table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You cannot give a direct answer to your question that A is better than B in this case - Test the options against your data, or a subset of the data, and see what performs best noting the timings from the document log.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Sep 2017 13:42:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406278#M812638</guid>
      <dc:creator>Colin-Albert</dc:creator>
      <dc:date>2017-09-25T13:42:18Z</dc:date>
    </item>
    <item>
      <title>Re: Faster QVD ? Optimised or Unoptimised QVD</title>
      <link>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406279#M812639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yeah I got it. Instead of creating resident , I can use apply map function where ever required. &lt;/P&gt;&lt;P&gt;Thanks Man!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Sep 2017 11:10:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Faster-QVD-Optimised-or-Unoptimised-QVD/m-p/1406279#M812639</guid>
      <dc:creator>pradeep92</dc:creator>
      <dc:date>2017-09-26T11:10:33Z</dc:date>
    </item>
  </channel>
</rss>

