<?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: loading multiple QVD files to the same table in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150395#M716436</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;I need to implement somewhat like you have implemented.&lt;/P&gt;&lt;P&gt;My datawarehouse fact contains near about 70 million records .&lt;/P&gt;&lt;P&gt;Each month fact is loaded with nearly 1.2 million data and is always contains data of 5 years (current+last 4 years).&lt;/P&gt;&lt;P&gt;I want to create architecture to load this data in QVW application.&lt;/P&gt;&lt;P&gt;So i decided to go with QVD files for fetching data from database and QVD files will be source of my QVW application. I want to know which are the best prectices to created QVD file. Below are some of my queries&lt;/P&gt;&lt;P&gt;1. How may QVD files to create?&lt;/P&gt;&lt;P&gt;2. In case if i choose to go with multiple QVD option. How shold i implemet inceramental load in this case?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Any help on this will really help me to proceed with robust architecture.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jul 2012 13:17:02 GMT</pubDate>
    <dc:creator>AbhijitBansode</dc:creator>
    <dc:date>2012-07-04T13:17:02Z</dc:date>
    <item>
      <title>loading multiple QVD files to the same table</title>
      <link>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150390#M716431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I am here with some usage data fetched from database and stroed in QVD files (one per month) and want to read the data back to a QVW.&lt;/P&gt;&lt;P&gt;I tried to read them in a schedule fashion where I only want the three latest months data:&lt;/P&gt;&lt;P&gt;UserUsage:&lt;BR /&gt;LOAD * FROM statData\$(firstyear)-$(firstmonth)-UserUsage.qvd (qvd);&lt;BR /&gt;LOAD * FROM statData\$(secondyear)-$(secondmonth)-UserUsage.qvd (qvd);&lt;BR /&gt;LOAD * FROM statData\$(thirdyear)-*-UserUsage.qvd (qvd);&lt;/P&gt;&lt;P&gt;(firstyear, firstmonth and so on are populated with the actual years and months according to a calculation earlier in the script)&lt;/P&gt;&lt;P&gt;When executed I get this in the log:&lt;BR /&gt;UserUsage &amp;lt;&amp;lt; 2009-05-UserUsage 152242 lines fetched&lt;BR /&gt;UserUsage &amp;lt;&amp;lt; 2009-06-UserUsage 181930 lines fetched&lt;BR /&gt;UserUsage &amp;lt;&amp;lt; 2009-07-UserUsage 211618 lines fetched&lt;/P&gt;&lt;P&gt;It reads the files alright but only 211618 lines are noted in document proporties, more in the line of 545000 was my wish.&lt;/P&gt;&lt;P&gt;So I thought I change the code a bit.&lt;/P&gt;&lt;P&gt;UserUsage:&lt;BR /&gt;LOAD * FROM statData\$(thirdyear)-*-UserUsage.qvd (qvd) WHERE usageType = 1 OR usageType = 3 OR usageType = 15;&lt;/P&gt;&lt;P&gt;here I load the last years Usage data, will not be too useful the first month in a year but that's another problem. The log looks more or less as the one for three months moving but starting with 01, 02 and so on. The result is however the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I append the data from multiple QVD files to the same table? I can't do that? Then I have to reread the complete database every day and that doesn't seem like a good idea at all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 20:55:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150390#M716431</guid>
      <dc:creator />
      <dc:date>2009-07-27T20:55:13Z</dc:date>
    </item>
    <item>
      <title>loading multiple QVD files to the same table</title>
      <link>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150391#M716432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;oooooh!&lt;/P&gt;&lt;P&gt;This is one of those times where you ask the question and just when you submit the answer pops up.&lt;/P&gt;&lt;P&gt;The numbers next to the lines is not actually number of lines from the files, it's the number of lines read in to the table. It accumulates as the load progresses. So my first solution was indeed correct and there were no issue &lt;span class="lia-unicode-emoji" title=":grinning_face_with_big_eyes:"&gt;😃&lt;/span&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 21:00:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150391#M716432</guid>
      <dc:creator />
      <dc:date>2009-07-27T21:00:24Z</dc:date>
    </item>
    <item>
      <title>loading multiple QVD files to the same table</title>
      <link>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150392#M716433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I need to load in qvw from multiple QVD files stored in a folder.&lt;/P&gt;&lt;P&gt;the number of QVD files is variable, so I need to do a loop for each QVD file stored in that folder.&lt;/P&gt;&lt;P&gt;Can you help me?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Mar 2010 17:03:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150392#M716433</guid>
      <dc:creator />
      <dc:date>2010-03-11T17:03:25Z</dc:date>
    </item>
    <item>
      <title>loading multiple QVD files to the same table</title>
      <link>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150393#M716434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm a newbie in this but I understand you can use the execute command to execute cmd and so you could use the move functionality&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Execute cmd /c move /y Dax.qvd Dax_Old.qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 Apr 2010 23:57:03 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150393#M716434</guid>
      <dc:creator />
      <dc:date>2010-04-23T23:57:03Z</dc:date>
    </item>
    <item>
      <title>loading multiple QVD files to the same table</title>
      <link>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150394#M716435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way is to use a * as a wildcard&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Load&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;From thefolder/*.qvd&lt;/P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Feb 2011 14:08:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150394#M716435</guid>
      <dc:creator>andy</dc:creator>
      <dc:date>2011-02-01T14:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: loading multiple QVD files to the same table</title>
      <link>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150395#M716436</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;I need to implement somewhat like you have implemented.&lt;/P&gt;&lt;P&gt;My datawarehouse fact contains near about 70 million records .&lt;/P&gt;&lt;P&gt;Each month fact is loaded with nearly 1.2 million data and is always contains data of 5 years (current+last 4 years).&lt;/P&gt;&lt;P&gt;I want to create architecture to load this data in QVW application.&lt;/P&gt;&lt;P&gt;So i decided to go with QVD files for fetching data from database and QVD files will be source of my QVW application. I want to know which are the best prectices to created QVD file. Below are some of my queries&lt;/P&gt;&lt;P&gt;1. How may QVD files to create?&lt;/P&gt;&lt;P&gt;2. In case if i choose to go with multiple QVD option. How shold i implemet inceramental load in this case?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;Any help on this will really help me to proceed with robust architecture.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jul 2012 13:17:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/loading-multiple-QVD-files-to-the-same-table/m-p/150395#M716436</guid>
      <dc:creator>AbhijitBansode</dc:creator>
      <dc:date>2012-07-04T13:17:02Z</dc:date>
    </item>
  </channel>
</rss>

