<?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 Loading QVD file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178924#M711955</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have made some QVD files. Now i want to reload those file in an new QVW. I have the following QVD files:&lt;/P&gt;&lt;P&gt;23-03-2011_File1&lt;/P&gt;&lt;P&gt;24-03-2011_File2&lt;/P&gt;&lt;P&gt;In those files i have 2 fields eg: Salesperson and Amount. In my load script i want to add 23-03 and 24-03 when loading the QVD files. Is this possible ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 24 Mar 2011 10:06:39 GMT</pubDate>
    <dc:creator>francisvandergr</dc:creator>
    <dc:date>2011-03-24T10:06:39Z</dc:date>
    <item>
      <title>Loading QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178924#M711955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have made some QVD files. Now i want to reload those file in an new QVW. I have the following QVD files:&lt;/P&gt;&lt;P&gt;23-03-2011_File1&lt;/P&gt;&lt;P&gt;24-03-2011_File2&lt;/P&gt;&lt;P&gt;In those files i have 2 fields eg: Salesperson and Amount. In my load script i want to add 23-03 and 24-03 when loading the QVD files. Is this possible ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 10:06:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178924#M711955</guid>
      <dc:creator>francisvandergr</dc:creator>
      <dc:date>2011-03-24T10:06:39Z</dc:date>
    </item>
    <item>
      <title>Loading QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178925#M711956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can perform delta load of 23-3 and 24-3 to existing data. following is just a template.&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;from&lt;/P&gt;&lt;P&gt;23-3&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;load&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;from historical where not exists(primarykey);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 10:09:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178925#M711956</guid>
      <dc:creator>suniljain</dc:creator>
      <dc:date>2011-03-24T10:09:44Z</dc:date>
    </item>
    <item>
      <title>Loading QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178926#M711957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Francis,&lt;/P&gt;&lt;P&gt;try something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;Result:&lt;BR /&gt;LOAD date#('23-03-2011','DD-MM-YYYY') as Date, Salesperson, Amount&lt;BR /&gt;FROM 23-03-2011_File1.qvd (qvd);&lt;BR /&gt;&lt;BR /&gt;LOAD date#('24-03-2011','DD-MM-YYYY') as Date, Salesperson, Amount&lt;BR /&gt;FROM 24-03-2011_File1.qvd (qvd);&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 10:19:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178926#M711957</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2011-03-24T10:19:15Z</dc:date>
    </item>
    <item>
      <title>Loading QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178927#M711958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just building on the top of Ralf here...&lt;/P&gt;&lt;P&gt;Why not:&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;&amp;lt;pre&amp;gt;Result:&lt;BR /&gt;LOAD date#(LEFT(FILENAME(),10),'DD-MM-YYYY') as Date, Salesperson, Amount&lt;BR /&gt;FROM *_File1.qvd (qvd);&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 10:26:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178927#M711958</guid>
      <dc:creator />
      <dc:date>2011-03-24T10:26:02Z</dc:date>
    </item>
    <item>
      <title>Loading QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178928#M711959</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, but you should consider what is in your folder! It's sometimes better to loop over a file list... &lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;- Ralf&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 10:29:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178928#M711959</guid>
      <dc:creator>rbecher</dc:creator>
      <dc:date>2011-03-24T10:29:31Z</dc:date>
    </item>
    <item>
      <title>Loading QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178929#M711960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, yes, of course...i only wanted to make the point, that you don't need to add each file separately, because that requires you to change the script every time you get a new file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 24 Mar 2011 10:34:31 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178929#M711960</guid>
      <dc:creator />
      <dc:date>2011-03-24T10:34:31Z</dc:date>
    </item>
    <item>
      <title>Loading QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178930#M711962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;A couple of observations. First up, another alternative to listing all source files or using a star is looping through each file in code. This allows you to add logic to decide whether you want to take the file or not. For example here I am loading from a folder of Excel files - but want to ignore the temp files created when a file is opened:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;For each vFileName in filelist(vSourceFolder &amp;amp; vFileMask)&lt;BR /&gt; if index(vFileName, '~$') = 0 then // ~$ denotes an open file temp file&lt;BR /&gt; LOAD * FROM [$(vFileName)]&lt;BR /&gt; (biff, no labels, table is RT$);&lt;BR /&gt; end if&lt;BR /&gt;next&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The other observation is that parsing the filename of the QVD and using that as a date will work fine, but it will cause a non optimized QVD load. It will be much more efficient to write the date into the QVD file at time of creation (it's obviously known as it's in the file name). For more information on Optimized vs. Non Optimized search the community - but just to let you know it can be up to 100x quicker!&lt;/P&gt;&lt;P&gt;Hope that helps,&lt;BR /&gt;Regards,&lt;BR /&gt;Steve&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 07:52:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178930#M711962</guid>
      <dc:creator>stevedark</dc:creator>
      <dc:date>2011-03-25T07:52:44Z</dc:date>
    </item>
    <item>
      <title>Loading QVD file</title>
      <link>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178931#M711964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;...good point about the optimized load.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2011 08:31:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Loading-QVD-file/m-p/178931#M711964</guid>
      <dc:creator />
      <dc:date>2011-03-25T08:31:39Z</dc:date>
    </item>
  </channel>
</rss>

