<?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: concatenate QVD with different columns in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743801#M720907</link>
    <description>&lt;P&gt;Just adding to solution of Oleg sir. If you don't want that empty column then using resident you can remove that row and then drop dummy field&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;Sales:&lt;BR /&gt;load 1 as Dummy autogenerate 1;&lt;/P&gt;&lt;P&gt;concatenate (Sales)&lt;BR /&gt;LOAD * FROM Sales*.qvd (qvd);&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;sales_final:&lt;/P&gt;&lt;P&gt;Load * Resident Sales where dummy &amp;lt;&amp;gt;'1';&lt;/P&gt;&lt;P&gt;drop table Sales;&lt;/P&gt;&lt;P&gt;Drop field Dummy;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Prashant Sangle&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 15 Sep 2020 04:58:21 GMT</pubDate>
    <dc:creator>PrashantSangle</dc:creator>
    <dc:date>2020-09-15T04:58:21Z</dc:date>
    <item>
      <title>concatenate QVD with different columns</title>
      <link>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743419#M720905</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I have multiple QVDs with date in qvd name ex: Sales_20200901, Sales_20200902......&lt;BR /&gt;alos, I have another set of QVDs with similar names ex: Sales_20200903, Sales_20200904...&lt;/P&gt;&lt;P&gt;first two qvds Sales_20200901, Sales_20200902 will have 5 columns&lt;BR /&gt;second two qvds Sales_20200903, Sales_20200904 will have same column names and few extra columns&lt;BR /&gt;Now I want to load All qvds and concatenate together.&lt;/P&gt;&lt;P&gt;Load&lt;BR /&gt;*&lt;BR /&gt;from Sales_*.qvd(qvd);&lt;/P&gt;&lt;P&gt;The above code creates sys keys as it considers as multiple qvds&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;expectation is to concatenate all QVD even if the columns are different when we load with wild cards.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Nov 2024 23:59:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743419#M720905</guid>
      <dc:creator>viveksingh</dc:creator>
      <dc:date>2024-11-15T23:59:20Z</dc:date>
    </item>
    <item>
      <title>Re: concatenate QVD with different columns</title>
      <link>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743765#M720906</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;If you create an empty table prior to the load, then you can use the CONCATENATE keyword to force concatenation into the same table:&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Sales:&lt;BR /&gt;load 1 as Dummy autogenerate 1;&lt;/P&gt;&lt;P&gt;concatenate (Sales)&lt;BR /&gt;LOAD * FROM Sales*.qvd (qvd);&lt;/P&gt;&lt;P&gt;Drop field Dummy;&lt;/P&gt;&lt;P&gt;--------------&lt;/P&gt;&lt;P&gt;You will end up with a single empty row that wasn't part of your data. If this is unacceptable, then you can load the QVD files in a loop one by one, using the syntax FOR EACH, as described here:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptControlStatements/For%20Each.htm" target="_self"&gt;https://help.qlik.com/en-US/qlikview/April2020/Subsystems/Client/Content/QV_QlikView/Scripting/ScriptControlStatements/For%20Each.htm&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;</description>
      <pubDate>Mon, 14 Sep 2020 22:26:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743765#M720906</guid>
      <dc:creator>Oleg_Troyansky</dc:creator>
      <dc:date>2020-09-14T22:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: concatenate QVD with different columns</title>
      <link>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743801#M720907</link>
      <description>&lt;P&gt;Just adding to solution of Oleg sir. If you don't want that empty column then using resident you can remove that row and then drop dummy field&lt;/P&gt;&lt;P&gt;like&lt;/P&gt;&lt;P&gt;Sales:&lt;BR /&gt;load 1 as Dummy autogenerate 1;&lt;/P&gt;&lt;P&gt;concatenate (Sales)&lt;BR /&gt;LOAD * FROM Sales*.qvd (qvd);&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;sales_final:&lt;/P&gt;&lt;P&gt;Load * Resident Sales where dummy &amp;lt;&amp;gt;'1';&lt;/P&gt;&lt;P&gt;drop table Sales;&lt;/P&gt;&lt;P&gt;Drop field Dummy;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Prashant Sangle&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2020 04:58:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743801#M720907</guid>
      <dc:creator>PrashantSangle</dc:creator>
      <dc:date>2020-09-15T04:58:21Z</dc:date>
    </item>
    <item>
      <title>Re: concatenate QVD with different columns</title>
      <link>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743969#M720908</link>
      <description>&lt;P&gt;Just another addition:&lt;/P&gt;&lt;P&gt;load 1 as Dummy autogenerate &lt;FONT color="#FF0000"&gt;&lt;STRONG&gt;0&lt;/STRONG&gt;&lt;/FONT&gt;;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;</description>
      <pubDate>Tue, 15 Sep 2020 13:07:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/concatenate-QVD-with-different-columns/m-p/1743969#M720908</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2020-09-15T13:07:43Z</dc:date>
    </item>
  </channel>
</rss>

