<?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: Add data to qvd instead of replace it in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678880#M678021</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Say I create a different qvd for each day that I run the extract - is there a simple way to combine all of them together?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jun 2014 16:36:35 GMT</pubDate>
    <dc:creator />
    <dc:date>2014-06-13T16:36:35Z</dc:date>
    <item>
      <title>Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678878#M678019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi. In my extract I am loading a bunch of data from a database into a qlikview table. After the table is created I am storing it into a qvd. I'm running into an issue that every time I run the extract the data replaces the previous data into the qvd. Is there code that will add the new data to the qvd and retain the old data? Currently I am using STORE * FROM Table INTO Table.qvd. I figured there might be a different code that I could use to do this. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 16:27:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678878#M678019</guid>
      <dc:creator />
      <dc:date>2014-06-13T16:27:24Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678879#M678020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nope. A qvd file is basically a memory dump of a table from qlikviews in-memory database. It's not possible to incrementally store to a qvd file. But since it is a memory dump it will be written to disk very quickly. What you can do is incremental loading and store each incremental extract into a separate qvd. Of course you then have to load all qvd's into qlikview to get the complete table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 16:32:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678879#M678020</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-06-13T16:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678880#M678021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Say I create a different qvd for each day that I run the extract - is there a simple way to combine all of them together?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 16:36:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678880#M678021</guid>
      <dc:creator />
      <dc:date>2014-06-13T16:36:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678881#M678022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, wildcard loading: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;Load X,Y,Z&lt;/P&gt;&lt;P&gt;from *.qvd (qvd);&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 16:39:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678881#M678022</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-06-13T16:39:33Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678882#M678023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Basically you can rewrite your QVD every time you run&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM [yourqvd.qvd](qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate&lt;/P&gt;&lt;P&gt;SQL&lt;/P&gt;&lt;P&gt;[your query goes here]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store t into [yourqvd.qvd](qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check your manual for "Incremental Load"&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 16:40:46 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678882#M678023</guid>
      <dc:creator>Clever_Anjos</dc:creator>
      <dc:date>2014-06-13T16:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678883#M678024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried this technique, but for some reason it messes up my data model. It only works for the first qvd in the directory, and then for the other ones it seems like the joins and concatenations are not working. Any idea how I can fix this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 16:45:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678883#M678024</guid>
      <dc:creator />
      <dc:date>2014-06-13T16:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678884#M678025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The qvd's that should end up as one table should have exactly the same number of fields with the exact same field names.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 16:47:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678884#M678025</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-06-13T16:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678885#M678026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;They definitely do because I am specifying the field names in the extract and the data model. Something is happening in the data model where it works for the first qvd, but doesnt for the other ones. I am using code in the data model like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Field1,&lt;/P&gt;&lt;P&gt;Field2&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Table1\*.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table2:&lt;/P&gt;&lt;P&gt;Left Join (Table1)&lt;/P&gt;&lt;P&gt;Field1,&lt;/P&gt;&lt;P&gt;Field3&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Table2\*.qvd (qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea on what I'm doing wrong? Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 17:04:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678885#M678026</guid>
      <dc:creator />
      <dc:date>2014-06-13T17:04:40Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678886#M678027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I remember correctly what happens is something like this:&lt;/P&gt;&lt;P&gt;After creating Table1 the first qvd for table2 gets joined to Table1 which adds the field Field3 to Table1. Then next qvd is now joined not on just Field1, but Field1 and Field3. Etc, etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 17:11:58 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678886#M678027</guid>
      <dc:creator>Gysbert_Wassenaar</dc:creator>
      <dc:date>2014-06-13T17:11:58Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678887#M678028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WIldcard loads don't work properly for JOINS. You have to load all the Table2 QVDs into a temp table and then join that to Table1. Like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * FROM Table1\*.qvd (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table2:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD * FROM Table1\*.qvd (qvd);&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;JOIN (Table1) LOAD * RESIDENT Table2;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DROP TABLE Table2;&lt;/SPAN&gt;&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;P&gt;&lt;A class="jive-link-external-small" href="http://robwunderlich.com"&gt;http://robwunderlich.com&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 17:16:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678887#M678028</guid>
      <dc:creator>rwunderlich</dc:creator>
      <dc:date>2014-06-13T17:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678888#M678029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We get an SAP table each night with the prior 7 days of data (&lt;SPAN style="color: #004d4d;"&gt;LIKP_DELTA.QVD&lt;/SPAN&gt;) and append the data to the main SAP(&lt;SPAN style="color: #004d4d;"&gt;LIKP.QVD&lt;/SPAN&gt;) table with:&lt;/P&gt;&lt;P&gt;LIKP:&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;load&lt;/STRONG&gt; *,&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #008000;"&gt;VBELN&lt;/SPAN&gt; &lt;STRONG style="color: #0000ff;"&gt;As&lt;/STRONG&gt; &lt;SPAN style="color: #008000;"&gt;Key&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;From&lt;/STRONG&gt; &lt;SPAN style="color: #004d4d;"&gt;Q:\&lt;/SPAN&gt;&lt;SPAN style="color: #004d4d;"&gt;LIKP_DELTA.QVD&lt;/SPAN&gt; (&lt;STRONG style="color: #0000ff;"&gt;QVD&lt;/STRONG&gt;);&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;load&lt;/STRONG&gt;&amp;nbsp; * ,&lt;/P&gt;&lt;P&gt;'-' &lt;STRONG style="color: #0000ff;"&gt;as&lt;/STRONG&gt; &lt;SPAN style="color: #008000;"&gt;Key&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;From&lt;/STRONG&gt; &lt;SPAN style="color: #004d4d;"&gt;Q:&lt;/SPAN&gt;&lt;SPAN style="color: #004d4d;"&gt;\LIKP_USA.QVD&lt;/SPAN&gt; (&lt;STRONG style="color: #0000ff;"&gt;QVD&lt;/STRONG&gt;) &lt;STRONG style="color: #0000ff;"&gt;where&lt;/STRONG&gt;&amp;nbsp; &lt;STRONG style="color: #0000ff;"&gt;NOT&lt;/STRONG&gt; &lt;SPAN style="color: #800080;"&gt;EXISTS&lt;/SPAN&gt;(&lt;SPAN style="color: #008000;"&gt;Key&lt;/SPAN&gt;,&lt;SPAN style="color: #008000;"&gt;VBELN&lt;/SPAN&gt;);&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;drop&lt;/STRONG&gt; &lt;STRONG style="color: #0000ff;"&gt;field&lt;/STRONG&gt; &lt;SPAN style="color: #008000;"&gt;Key&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;store&lt;/STRONG&gt; * &lt;STRONG style="color: #0000ff;"&gt;from&lt;/STRONG&gt; LIKP &lt;STRONG style="color: #0000ff;"&gt;into&lt;/STRONG&gt; &lt;SPAN style="color: #004d4d;"&gt;Q:\&lt;/SPAN&gt;&lt;SPAN style="color: #004d4d;"&gt;LIKP.QVD&lt;/SPAN&gt;;&lt;/P&gt;&lt;P&gt;&lt;STRONG style="color: #0000ff;"&gt;DROP&lt;/STRONG&gt; &lt;STRONG style="color: #0000ff;"&gt;TABLE&lt;/STRONG&gt; LIKP; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 17:19:35 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678888#M678029</guid>
      <dc:creator />
      <dc:date>2014-06-13T17:19:35Z</dc:date>
    </item>
    <item>
      <title>Re: Add data to qvd instead of replace it</title>
      <link>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678889#M678030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks so much.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jun 2014 17:35:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Add-data-to-qvd-instead-of-replace-it/m-p/678889#M678030</guid>
      <dc:creator />
      <dc:date>2014-06-13T17:35:55Z</dc:date>
    </item>
  </channel>
</rss>

