<?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: QVD files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/QVD-files/m-p/312983#M1181416</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Faisal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are a lot of &lt;A _jive_internal="true" href="https://community.qlik.com/docs"&gt;good documents&lt;/A&gt; and &lt;A href="http://www.qlik.com/us/explore/resources"&gt;white papers&lt;/A&gt; on why use the QVD files and how. In regards to your question, I'd do a two step load, like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;// This loads the existing data in your QVD file&lt;/P&gt;&lt;P&gt;Original:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM File.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// This loads today data and appends its records&lt;/P&gt;&lt;P&gt;// to the table above&lt;/P&gt;&lt;P&gt;FromSource:&lt;/P&gt;&lt;P&gt;CONCATENATE (Original) LOAD *;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM Database&lt;/P&gt;&lt;P&gt;WHERE Date = '20111220'; // Or whatever source or condition you use to get new records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Now both the old data and today data are stored into the same QVD, so tomorrow&lt;/P&gt;&lt;P&gt;// the LOAD will be the same&lt;/P&gt;&lt;P&gt;STORE Original INTO File.qvd (qvd); &lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Dec 2011 07:34:25 GMT</pubDate>
    <dc:creator>Miguel_Angel_Baeyens</dc:creator>
    <dc:date>2011-12-20T07:34:25Z</dc:date>
    <item>
      <title>QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-files/m-p/312982#M1181415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dears&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was created a QVD files from a chart and save in my PC,Now if i want to update data to QVD files from my data base how it would be possibe&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As i am new to this area please tell me what are the advantages of using QVD files&lt;/P&gt;&lt;P&gt;If we are working by using a QVW file it is enough or we need to make use of QVD file also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;P&gt;Chennai&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 07:20:17 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-files/m-p/312982#M1181415</guid>
      <dc:creator />
      <dc:date>2011-12-20T07:20:17Z</dc:date>
    </item>
    <item>
      <title>Re: QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/QVD-files/m-p/312983#M1181416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Faisal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are a lot of &lt;A _jive_internal="true" href="https://community.qlik.com/docs"&gt;good documents&lt;/A&gt; and &lt;A href="http://www.qlik.com/us/explore/resources"&gt;white papers&lt;/A&gt; on why use the QVD files and how. In regards to your question, I'd do a two step load, like the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_text_macro jive_macro_code"&gt;&lt;P&gt;// This loads the existing data in your QVD file&lt;/P&gt;&lt;P&gt;Original:&lt;/P&gt;&lt;P&gt;LOAD *&lt;/P&gt;&lt;P&gt;FROM File.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// This loads today data and appends its records&lt;/P&gt;&lt;P&gt;// to the table above&lt;/P&gt;&lt;P&gt;FromSource:&lt;/P&gt;&lt;P&gt;CONCATENATE (Original) LOAD *;&lt;/P&gt;&lt;P&gt;SQL SELECT *&lt;/P&gt;&lt;P&gt;FROM Database&lt;/P&gt;&lt;P&gt;WHERE Date = '20111220'; // Or whatever source or condition you use to get new records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// Now both the old data and today data are stored into the same QVD, so tomorrow&lt;/P&gt;&lt;P&gt;// the LOAD will be the same&lt;/P&gt;&lt;P&gt;STORE Original INTO File.qvd (qvd); &lt;/P&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope that helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Miguel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Dec 2011 07:34:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/QVD-files/m-p/312983#M1181416</guid>
      <dc:creator>Miguel_Angel_Baeyens</dc:creator>
      <dc:date>2011-12-20T07:34:25Z</dc:date>
    </item>
  </channel>
</rss>

