<?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: Adding to QVD without loading it in in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777166#M664107</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without loading the QVD it is not possible to append the data, instead you can create separate QVD each time you load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM TableName;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Table INTO TableName_$(=Today()).qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the script will create separate qvd everyday, not in script you can load all QVDs in a single shot by using wildcard characters&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 TableName_*.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Jan 2015 05:51:06 GMT</pubDate>
    <dc:creator>jagan</dc:creator>
    <dc:date>2015-01-28T05:51:06Z</dc:date>
    <item>
      <title>Adding to QVD without loading it in</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777163#M664104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is there a way to add or concatenate to the QVD's without having to load them in first? I am looking for the optimal way to do incremental loading and insert new transactional data daily without having to load it up first.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2015 22:43:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777163#M664104</guid>
      <dc:creator />
      <dc:date>2015-01-27T22:43:27Z</dc:date>
    </item>
    <item>
      <title>Re: Adding to QVD without loading it in</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777164#M664105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That would not work without reading file first, inside you have pointer to distinct values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Jan 2015 23:02:11 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777164#M664105</guid>
      <dc:creator>jonasheisterkam</dc:creator>
      <dc:date>2015-01-27T23:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Adding to QVD without loading it in</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777165#M664106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I agree with &lt;A href="https://community.qlik.com/qlik-users/42026"&gt;Jonas Heisterkamp&lt;/A&gt;. For incremental loads you will nearly always need a method to check if new data aren't already stored within the qvd (it's quite often that the workflow to fill the qvd isn't perfect ...). Also an optimized load from the qvd is extremly fast and shouldn't be a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 03:18:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777165#M664106</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-01-28T03:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: Adding to QVD without loading it in</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777166#M664107</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Without loading the QVD it is not possible to append the data, instead you can create separate QVD each time you load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table:&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;FROM TableName;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Table INTO TableName_$(=Today()).qvd;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the script will create separate qvd everyday, not in script you can load all QVDs in a single shot by using wildcard characters&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 TableName_*.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jagan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 05:51:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777166#M664107</guid>
      <dc:creator>jagan</dc:creator>
      <dc:date>2015-01-28T05:51:06Z</dc:date>
    </item>
    <item>
      <title>Re: Adding to QVD without loading it in</title>
      <link>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777167#M664108</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are planning on creating one QVD for each month in a calendar year, and appending the transaction data to that specific month. I was curious to know if it was possible to append to the month QVD without loading the whole one. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As mentioned by &lt;A href="https://community.qlik.com/qlik-users/27943"&gt;Marcus_Sommer&lt;/A&gt;, we can do a load from the QVD on the last available transaction date and compare it to the new data to be added. The last available transaction should give us less resulting rows than the whole QVD worth of data, which we can then append to.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Jan 2015 19:47:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Adding-to-QVD-without-loading-it-in/m-p/777167#M664108</guid>
      <dc:creator />
      <dc:date>2015-01-28T19:47:51Z</dc:date>
    </item>
  </channel>
</rss>

