<?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 Appending two tables loaded from QVD files in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165805#M37986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vlad. I figured out you can do that, but that's exactly what I'm trying to avoid - loading the table from the QVD file takes quite long (3.8 million records take about 30-40 seconds) and that too slow for what we're trying to do - and it's only going to get bigger when we go live.&lt;/P&gt;&lt;P&gt;I thought having loaded the table once before, you can then manipulate what happens with it, but seems like it's not possible.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Katerina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Mar 2010 23:31:15 GMT</pubDate>
    <dc:creator />
    <dc:date>2010-03-02T23:31:15Z</dc:date>
    <item>
      <title>Appending two tables loaded from QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165803#M37984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;Hi all,&lt;/P&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;I am quite new to Qlikview and so far managed to get by with what I've learnt at the training course, from the Help and from the forum (mainly from the forum). However, I'm a bit puzzled with something - I am trying to perform LOAD from two different QVD files at different times, but I'd like to merge them/concatenate them together.&lt;/P&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;For example, the first time I perform a load from the QVD file, I'll just do a normal load and keep the table Item_info_first, as shown in the 'else' part of the code sample. The next time I perform a reload, I'd like to load from a different QVD file and load id in table Item_info_incr, as shown in the 'if' part. I need to concatenate the two - they have identical fields. In other words, I need to append the second load to the first one somehow.&lt;/P&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;Whatever I've tried hasn't worked and it seems that I can only concatenate/append loads if they're performed one after another in the script, not at different times. Is that correct? Does anybody know if there's a way to do what I need to do?&lt;/P&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;I have tried and managed to get it going using 'add only load' and performing 'partial reload', but I need this to work through the scheduler and the management console, not through the UI and by running Qlikview application. As far as I can see, there's no way to do that.&lt;/P&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;Any thoughs or input will be greatly appreciated after spending few hours today trying to figure it out.&lt;/P&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;Regards,&lt;/P&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;Katerina&lt;/P&gt;&lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;&lt;/P&gt;&lt;PRE ___default_attr="plain" class="jive_text_macro jive_macro_code" jivemacro="code"&gt;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;if&lt;/B&gt; filesize('file.qvd') &amp;gt; 0 &lt;B&gt;then&lt;/B&gt;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;I&gt;Item_info_&lt;/I&gt;&lt;I&gt;incr&lt;/I&gt;&lt;I&gt;:&lt;/I&gt;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;LOAD&lt;/B&gt; item1, item2&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;FROM&lt;/B&gt; item_info_Tue.qvd (qvd);&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;CONCATENATE (&lt;/B&gt;&lt;I&gt;Item_info_first&lt;/I&gt;&lt;B&gt;) LOAD * RESIDENT&lt;/B&gt; &lt;I&gt;Item_info_&lt;/I&gt;&lt;I&gt;incr;&lt;/I&gt; &lt;B&gt;&lt;/B&gt;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;drop table&lt;/B&gt; &lt;I&gt;Item_info_&lt;/I&gt;incr&lt;I&gt;;&lt;/I&gt;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;else&lt;/B&gt;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;I&gt;Item_info_first:&lt;/I&gt;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;LOAD&lt;/B&gt; item1, item2&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;FROM&lt;/B&gt; newfile.qvd (qvd)&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;where&lt;/B&gt; Year &amp;gt; 2000;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;B&gt;end if&lt;/B&gt;&lt;BR style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;" /&gt;&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P style="line-height: normal; margin: 5pt 0cm; mso-pagination: none; mso-layout-grid-align: none;"&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 23:04:39 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165803#M37984</guid>
      <dc:creator />
      <dc:date>2010-03-02T23:04:39Z</dc:date>
    </item>
    <item>
      <title>Appending two tables loaded from QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165804#M37985</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Katerina,&lt;/P&gt;&lt;P&gt;I don't think there's a way to do that. I'm assuming the reason you want to do this is because the QVD changes after the first load. What I would recommend is to output during the first load right after you input. Meaning, after the load, store the table into a temp QVD. Then, during the second load, load from the temp QVD and then concatenate load the newfile.qvd.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 23:20:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165804#M37985</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2010-03-02T23:20:28Z</dc:date>
    </item>
    <item>
      <title>Appending two tables loaded from QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165805#M37986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Vlad. I figured out you can do that, but that's exactly what I'm trying to avoid - loading the table from the QVD file takes quite long (3.8 million records take about 30-40 seconds) and that too slow for what we're trying to do - and it's only going to get bigger when we go live.&lt;/P&gt;&lt;P&gt;I thought having loaded the table once before, you can then manipulate what happens with it, but seems like it's not possible.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Katerina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 23:31:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165805#M37986</guid>
      <dc:creator />
      <dc:date>2010-03-02T23:31:15Z</dc:date>
    </item>
    <item>
      <title>Appending two tables loaded from QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165806#M37987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Katerina,&lt;/P&gt;&lt;P&gt;I think I understand what you're saying. The good news is that it's possible to do a partial reload through Publisher. Assuming you are using 9.0, open your task in QEMC and on the Reload tab you will see an option for "Partial Reload."&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 23:34:33 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165806#M37987</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2010-03-02T23:34:33Z</dc:date>
    </item>
    <item>
      <title>Appending two tables loaded from QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165807#M37988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vlad, we are using V9 but only Qlikview server (not Publisher). Through the QEMC and the Reload tab I can only see options to set up a normal/full reload at certain time intervals, nothing about 'partial reload'. Is that a feature only if you have Publisher licence?&lt;/P&gt;&lt;P&gt;Thanks, Katerina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Mar 2010 23:45:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165807#M37988</guid>
      <dc:creator />
      <dc:date>2010-03-02T23:45:50Z</dc:date>
    </item>
    <item>
      <title>Appending two tables loaded from QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165808#M37989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, that's correct. The partial reload option is only available with Publisher Enterprise. However, you can create a batch reload that does a partial reload and schedule it using Windows event scheduler. The syntax for this would be:&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;"C:\Program Files\QlikView\Qv.exe" /rp "C:\myfile.qvw"&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;where C:\myfile.qvw would be the path to your file. Note that with Publisher Enterprise you can also schedule command line reloads... &lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;Good luck,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Mar 2010 01:55:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165808#M37989</guid>
      <dc:creator>vgutkovsky</dc:creator>
      <dc:date>2010-03-03T01:55:56Z</dc:date>
    </item>
    <item>
      <title>Appending two tables loaded from QVD files</title>
      <link>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165809#M37990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vlad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have been successfully able to use your script and reload the file however I am getting a problem, I am using a leased licence from the server and I have to manually press the continue button to reload the data. Any advices on the workaround.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kingshuk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Oct 2010 21:19:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Appending-two-tables-loaded-from-QVD-files/m-p/165809#M37990</guid>
      <dc:creator />
      <dc:date>2010-10-12T21:19:02Z</dc:date>
    </item>
  </channel>
</rss>

