<?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 Speed of loading a QVD file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201412#M714382</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;I had a similar problem where the load from the QVD included several manipulations of the incoming data. The following snippet illustrates my solution, loading to a temporary table and then reloading with my data manipulation - in your case you'd get the incremental data in the second load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;TmpIncidents:&lt;BR /&gt;// Load base incident data&lt;BR /&gt;LOAD&lt;BR /&gt; *&lt;BR /&gt;FROM&lt;BR /&gt; Incidents.qvd (qvd);&lt;BR /&gt;&lt;BR /&gt;Incidents:&lt;BR /&gt;// Reload incident data for manipulation&lt;BR /&gt;LOAD&lt;BR /&gt; IncidentID,&lt;BR /&gt; If(IsNull(CausedByID), -99, If(CausedByID = 0, -99, CausedByID)) AS CausedByID,&lt;BR /&gt; %ClipTypeID,&lt;BR /&gt; IncidentLogged,&lt;BR /&gt; IncidentClosed,&lt;BR /&gt; If(IsNull(POSuiteHierarchyCatID), -99, If(POSuiteHierarchyCatID = 0, -99, If(Trim(POSuiteHierarchyCatID) = '', -99, POSuiteHierarchyCatID))) AS POSuiteHierarchyCatID,&lt;BR /&gt; If(IsNull(POSuitesOtherCatID), -99, If(POSuitesOtherCatID = 0, -99, If(Trim(POSuitesOtherCatID) = '', -99, POSuitesOtherCatID))) AS POSuitesOtherCatID,&lt;BR /&gt; IncidentImpact,&lt;BR /&gt; IncidentStart,&lt;BR /&gt; IncidentEnd,&lt;BR /&gt; IncidentType,&lt;BR /&gt; ...&lt;BR /&gt; Trim(LoggedByFirstname &amp;amp; ' ' &amp;amp; LoggedByLastName) AS LoggedByName,&lt;BR /&gt; ...&lt;BR /&gt;RESIDENT TmpIncidents&lt;BR /&gt;WHERE&lt;BR /&gt; NOT IsNull(IncidentLogged);&lt;BR /&gt;&lt;BR /&gt;DROP TABLE TmpIncidents;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jan 2010 16:53:04 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-01-05T16:53:04Z</dc:date>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201410#M714379</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All. I've got a qvw which I load by loading the existing data from a qvd file, loading new data, then saving the qvd. The idea of this is that the data load should be much quicker, and only pull new data from the server which should be slower, but will involve much less data.&lt;/P&gt;&lt;P&gt;I've been having time out problems when it is scheduled, so reloaded it in qv and monitored the progress. As expected the loading of the records from the qvd file was fast (35 million rows, about 70 columns wide), but it then sat there using 25% of the CPU (4 dual core processors) for 50 minutes before moving to the next step which was to check for the most recent data in the data loaded.&lt;/P&gt;&lt;P&gt;Any ideas why it is taking so long after the data is loaded (does it need to be ordered when saved or something like that), and is there any reason that the CPU is capped at 25%, querying the qvw via internet explorer uses the full 100%.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 15:01:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201410#M714379</guid>
      <dc:creator />
      <dc:date>2010-01-05T15:01:36Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201411#M714381</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard, when you load the QVD file, the message is &lt;STRONG&gt;&lt;/STRONG&gt;&lt;EM&gt;&lt;STRONG&gt;(qvd Optimized ) 30,000,000 loaded&lt;/STRONG&gt;&lt;/EM&gt; ?May be in the script you have script like If, or group by, in my case work's on 300,000,000 the time on load is 1 hour the CPU Xeon 3Ghz.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 15:33:48 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201411#M714381</guid>
      <dc:creator />
      <dc:date>2010-01-05T15:33:48Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201412#M714382</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;I had a similar problem where the load from the QVD included several manipulations of the incoming data. The following snippet illustrates my solution, loading to a temporary table and then reloading with my data manipulation - in your case you'd get the incremental data in the second load:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;TmpIncidents:&lt;BR /&gt;// Load base incident data&lt;BR /&gt;LOAD&lt;BR /&gt; *&lt;BR /&gt;FROM&lt;BR /&gt; Incidents.qvd (qvd);&lt;BR /&gt;&lt;BR /&gt;Incidents:&lt;BR /&gt;// Reload incident data for manipulation&lt;BR /&gt;LOAD&lt;BR /&gt; IncidentID,&lt;BR /&gt; If(IsNull(CausedByID), -99, If(CausedByID = 0, -99, CausedByID)) AS CausedByID,&lt;BR /&gt; %ClipTypeID,&lt;BR /&gt; IncidentLogged,&lt;BR /&gt; IncidentClosed,&lt;BR /&gt; If(IsNull(POSuiteHierarchyCatID), -99, If(POSuiteHierarchyCatID = 0, -99, If(Trim(POSuiteHierarchyCatID) = '', -99, POSuiteHierarchyCatID))) AS POSuiteHierarchyCatID,&lt;BR /&gt; If(IsNull(POSuitesOtherCatID), -99, If(POSuitesOtherCatID = 0, -99, If(Trim(POSuitesOtherCatID) = '', -99, POSuitesOtherCatID))) AS POSuitesOtherCatID,&lt;BR /&gt; IncidentImpact,&lt;BR /&gt; IncidentStart,&lt;BR /&gt; IncidentEnd,&lt;BR /&gt; IncidentType,&lt;BR /&gt; ...&lt;BR /&gt; Trim(LoggedByFirstname &amp;amp; ' ' &amp;amp; LoggedByLastName) AS LoggedByName,&lt;BR /&gt; ...&lt;BR /&gt;RESIDENT TmpIncidents&lt;BR /&gt;WHERE&lt;BR /&gt; NOT IsNull(IncidentLogged);&lt;BR /&gt;&lt;BR /&gt;DROP TABLE TmpIncidents;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:53:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201412#M714382</guid>
      <dc:creator />
      <dc:date>2010-01-05T16:53:04Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201413#M714383</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply. Normally it is loaded optimised, i.e Load * from C:\File.qvd; If I add a where clause to this load, the spead of the reading of the qvd file slows (takes about 5 or 6 times longer), but the CPU time after is still the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 16:59:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201413#M714383</guid>
      <dc:creator />
      <dc:date>2010-01-05T16:59:46Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201414#M714384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the reply, but all the fields are loaded without any filtering, so it already uses Load * from qvd&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 17:02:19 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201414#M714384</guid>
      <dc:creator />
      <dc:date>2010-01-05T17:02:19Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201415#M714385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In that case try putting the WHERE clause on the second load and not on the load from QVD.&lt;/P&gt;&lt;P&gt;The important point is that to get an optimised load from a QVD you mustn't do &lt;EM&gt;anything&lt;/EM&gt; to the data during that load (including looking at it, which is what you're effectively doing by restricting it with the WHERE clause).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 17:08:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201415#M714385</guid>
      <dc:creator />
      <dc:date>2010-01-05T17:08:22Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201416#M714386</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;P.S. Sorry about suggesting your post as an answer - finger trouble! &lt;IMG alt="Sad" src="http://community.qlik.com/emoticons/emotion-6.gif" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jan 2010 17:09:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201416#M714386</guid>
      <dc:creator />
      <dc:date>2010-01-05T17:09:13Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201417#M714387</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just wondered if you ever found a solution to this problem?? I have the exact same thing happening - version 7.51 on a 32-bit server. Straight load of a qvd - LOAD * FROM xxx.qvd - no WHERE clause or data manipulation. It gets to record 1,173,648 int the qvd within a couple of seconds, then stops. It is not hung - every 5 to 10 minutes it will progress another few thousand records. It's using 25% of the CPU, as you said.&lt;/P&gt;&lt;P&gt;Even odder- if I specify the fields to load and exclude 5 specific fields (out of 19 fields), the data loads in seconds. All 5 fields are fully populated with data - basic Text information.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Apr 2010 19:40:52 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201417#M714387</guid>
      <dc:creator>johnmart61</dc:creator>
      <dc:date>2010-04-20T19:40:52Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201418#M714388</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The CPU is at 25% because QV uses only 1 core at 100%. What about memory? Maybe, QV is using all the physical memory.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Apr 2010 19:55:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201418#M714388</guid>
      <dc:creator />
      <dc:date>2010-04-20T19:55:41Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201419#M714389</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When there is no calculation of data or linking with previously loaded data, can only guess that it is related to available memory. CPU-load is not the key in this case. Have you checked this?&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Apr 2010 22:21:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201419#M714389</guid>
      <dc:creator>prieper</dc:creator>
      <dc:date>2010-04-20T22:21:08Z</dc:date>
    </item>
    <item>
      <title>Speed of loading a QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201420#M714390</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You're the second person to suggest this. I''l try the same load on a 64-bit server - maybe that will resolve the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Apr 2010 22:26:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Speed-of-loading-a-QVD-file/m-p/201420#M714390</guid>
      <dc:creator>johnmart61</dc:creator>
      <dc:date>2010-04-20T22:26:40Z</dc:date>
    </item>
  </channel>
</rss>

