<?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: Reduce load time in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392987#M696705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you upload the Document Log?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 26 Mar 2013 19:50:01 GMT</pubDate>
    <dc:creator>rwunderlich</dc:creator>
    <dc:date>2013-03-26T19:50:01Z</dc:date>
    <item>
      <title>Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392983#M696701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TableA loads with a where clause 'where date &amp;gt; '1/1/2011'' and TableB is join to TableA. TableB is huge and linked to TableA by&amp;nbsp; ProductID. Now i would only want to load only relevent fields to reduce the load time.Any help please!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 12:01:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392983#M696701</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-26T12:01:57Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392984#M696702</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 you please attach sample file ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 12:05:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392984#M696702</guid>
      <dc:creator />
      <dc:date>2013-03-26T12:05:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392985#M696703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TABLEA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;productID&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM xxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHERE where date &amp;gt; '1/1/2011''&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLEB:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;productID&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;&lt;P&gt;F&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;P&gt;I&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM XXX&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 12:09:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392985#M696703</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-26T12:09:38Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392986#M696704</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;In qlikview left join with where condition it will take more time to reload.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this below script, it might improve the performance. Try this and let me know&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLEA:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD &lt;/P&gt;&lt;P&gt;productID&lt;/P&gt;&lt;P&gt;B&lt;/P&gt;&lt;P&gt;C&lt;/P&gt;&lt;P&gt;Date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM xxx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLEB:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LEFT JOIN(TABLEA)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;productID&lt;/P&gt;&lt;P&gt;E&lt;/P&gt;&lt;P&gt;F&lt;/P&gt;&lt;P&gt;G&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;P&gt;I&lt;/P&gt;&lt;P&gt;J&lt;/P&gt;&lt;P&gt;H&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM XXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Output:&lt;/P&gt;&lt;P&gt;Load&amp;nbsp; * &lt;/P&gt;&lt;P&gt;Resident TABLEA&lt;/P&gt;&lt;P&gt;where date &amp;gt; '1/1/2011'';&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Drop table TABLEA;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best of luck&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 13:34:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392986#M696704</guid>
      <dc:creator />
      <dc:date>2013-03-26T13:34:19Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392987#M696705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you upload the Document Log?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Mar 2013 19:50:01 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392987#M696705</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-03-26T19:50:01Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392988#M696706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kind of hard to read like that. Can you post it as an attachment instead? Use the "Use Advanced Editor" link to be able to attach files.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 16:28:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392988#M696706</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-03-27T16:28:00Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392989#M696707</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;Please find attached.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Mar 2013 16:54:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392989#M696707</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-27T16:54:45Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392990#M696708</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I understand correctly, you concatenate a few fact loads and then want to join rows from table PUB.uwm120 on field [Policy Number].&amp;nbsp; uwm120 is large so it takes a long time to pull down all the rows and you only need a subset of rows for the join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could move the join into the SQL so the join happens at the DB Server. That should speed things up. Since you are concatenating unlike columns, it may be easiest to add the umw120 join to each of the fact SQL SELECTs. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;P&gt;&lt;A class="jive-link-external-small" href="http://masterssummit.com"&gt;http://masterssummit.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Mar 2013 05:32:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392990#M696708</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-03-28T05:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392991#M696709</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 do not have access to the DB, only interfacing. Could you please illustrate the latter part "Since you are concatenating unlike columns, it may be easiest to add the umw120 join to each of the fact SQL SELECTs".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Mar 2013 09:14:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392991#M696709</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2013-03-28T09:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Reduce load time</title>
      <link>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392992#M696710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Instead of a final join, do the join in SQL with each select of the fact table. Like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;CONCATENATE (FACT)&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; blah, blah&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT *&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;FROM&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt; PUB.clm100 A&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LEFT JOIN PUB.uwm120 B&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt; A.[Policy Number] = B.[Policy Number]&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;WHERE trndat &amp;gt; '12/31/2009'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that the field list "*' above should be modified to include only the fields you want, so you are not bringing all fields into the LOAD statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Mar 2013 17:37:16 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Reduce-load-time/m-p/392992#M696710</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2013-03-28T17:37:16Z</dc:date>
    </item>
  </channel>
</rss>

