<?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 QVDs with wildcard in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Loading-Multiple-QVDs-with-wildcard/m-p/33071#M2209</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Jonathan!&lt;/P&gt;&lt;P&gt;Tremendous help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right... the tables were not identical..&lt;/P&gt;&lt;P&gt;The original script did concatenate and stored only the identical ones, and the table Target_Metrics-1 has the different one... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Apr 2018 08:22:57 GMT</pubDate>
    <dc:creator>dafnis14</dc:creator>
    <dc:date>2018-04-30T08:22:57Z</dc:date>
    <item>
      <title>Loading Multiple QVDs with wildcard</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-Multiple-QVDs-with-wildcard/m-p/33069#M2207</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;I'm using the following script to load identical QVD files:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Targets_Metrics:&lt;/P&gt;&lt;P&gt;LOAD *,&lt;/P&gt;&lt;P&gt;Target_Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Date&lt;/P&gt;&lt;P&gt;From $(vPathTempData)Target_NO*.qvd (qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Targets_Metrics into $(vPathQVD)Targets_Metrics.qvd (qvd);&lt;/P&gt;&lt;P&gt;DROP Table Targets_Metrics;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But after dropping the table, there is a table with that name left in the model:&lt;/P&gt;&lt;P&gt;Why does it happen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/201054_pastedImage_1.png" style="max-width: 1200px; max-height: 900px;" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2018 05:29:02 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-Multiple-QVDs-with-wildcard/m-p/33069#M2207</guid>
      <dc:creator>dafnis14</dc:creator>
      <dc:date>2018-04-30T05:29:02Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Multiple QVDs with wildcard</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-Multiple-QVDs-with-wildcard/m-p/33070#M2208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The QVD files do not have identical fields, so the QVD was not concatenated and a -1 table was created. The DROP table references the original table only. This script will enforce the concatenation:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Targets_Metrics:&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;LOAD 0 as Date AUTOGENERATE 0;&amp;nbsp; // create empty table as concatenation target&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;Concatenate(Targets_Metrics)&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; //force concatenation&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOAD *,&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Target_Date&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; as Date&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;From $(vPathTempData)Target_NO*.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;STORE Targets_Metrics into $(vPathQVD)Targets_Metrics.qvd (qvd);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;DROP Table Targets_Metrics;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2018 05:34:27 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-Multiple-QVDs-with-wildcard/m-p/33070#M2208</guid>
      <dc:creator>jonathandienst</dc:creator>
      <dc:date>2018-04-30T05:34:27Z</dc:date>
    </item>
    <item>
      <title>Re: Loading Multiple QVDs with wildcard</title>
      <link>https://community.qlik.com/t5/App-Development/Loading-Multiple-QVDs-with-wildcard/m-p/33071#M2209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Jonathan!&lt;/P&gt;&lt;P&gt;Tremendous help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are right... the tables were not identical..&lt;/P&gt;&lt;P&gt;The original script did concatenate and stored only the identical ones, and the table Target_Metrics-1 has the different one... &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Apr 2018 08:22:57 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Loading-Multiple-QVDs-with-wildcard/m-p/33071#M2209</guid>
      <dc:creator>dafnis14</dc:creator>
      <dc:date>2018-04-30T08:22:57Z</dc:date>
    </item>
  </channel>
</rss>

