<?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: What is difference between add,concatenate,without concatenate? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/What-is-difference-between-add-concatenate-without-concatenate/m-p/397048#M1163074</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. &lt;EM&gt;&lt;STRONG&gt;Concatenate &lt;/STRONG&gt;&lt;/EM&gt;does not make any difference here because the table structure of table 1 and 2 is the same (Id1 and Item). Thus, QlikView will concatenate these tables automatically. The concatenate keyword is used to force concatenation of two tables that do not have an identical structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The &lt;EM&gt;&lt;STRONG&gt;Add &lt;/STRONG&gt;&lt;/EM&gt;keyword is used for Partial Reload, so when runing a partial reload, only the load statements with the prefix add or replace will be loaded. However, on a full reload all load statements will run, so in this case both table 1 and 2 load as normal and since the structure is identical, they will be automatically concatenated and you end up with one table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Since both tables, 1 and 2 are identical in structure, they will be automatically concatenated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 10 Oct 2012 06:53:45 GMT</pubDate>
    <dc:creator>Anonymous</dc:creator>
    <dc:date>2012-10-10T06:53:45Z</dc:date>
    <item>
      <title>What is difference between add,concatenate,without concatenate?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-difference-between-add-concatenate-without-concatenate/m-p/397047#M1163072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have a script keyword add, concatenate in qlikview. Ryt?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know what is the difference between those.?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I worto a script like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tab1:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Id1,Item&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1,A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2,B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3,C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4,D];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff6600;"&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Id1,Item&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1,A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2,B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3,C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4,D&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5,E] where not Exists(Item);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tab2:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Id1,Item&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1,A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2,B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3,C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4,D];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff6600;"&gt;&lt;STRONG&gt;Add&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Id1,Item&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1,A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2,B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3,C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4,D&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5,E] where not Exists(Item);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tab3:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Id1,Item&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1,A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2,B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3,C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4,D];&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;load * Inline&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;[Id1,Item&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;1,A&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;2,B&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;3,C&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;4,D&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;5,E] where not Exists(Item);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These three tables returns same value like below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG __jive_id="23193" class="jive-image" alt="Capture12.PNG" src="https://community.qlik.com/legacyfs/online/23193_Capture12.PNG" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please give me some knowledge on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kabilan K.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 06:47:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-difference-between-add-concatenate-without-concatenate/m-p/397047#M1163072</guid>
      <dc:creator />
      <dc:date>2012-10-10T06:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: What is difference between add,concatenate,without concatenate?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-difference-between-add-concatenate-without-concatenate/m-p/397048#M1163074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. &lt;EM&gt;&lt;STRONG&gt;Concatenate &lt;/STRONG&gt;&lt;/EM&gt;does not make any difference here because the table structure of table 1 and 2 is the same (Id1 and Item). Thus, QlikView will concatenate these tables automatically. The concatenate keyword is used to force concatenation of two tables that do not have an identical structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The &lt;EM&gt;&lt;STRONG&gt;Add &lt;/STRONG&gt;&lt;/EM&gt;keyword is used for Partial Reload, so when runing a partial reload, only the load statements with the prefix add or replace will be loaded. However, on a full reload all load statements will run, so in this case both table 1 and 2 load as normal and since the structure is identical, they will be automatically concatenated and you end up with one table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Since both tables, 1 and 2 are identical in structure, they will be automatically concatenated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 10 Oct 2012 06:53:45 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-difference-between-add-concatenate-without-concatenate/m-p/397048#M1163074</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2012-10-10T06:53:45Z</dc:date>
    </item>
    <item>
      <title>Re: What is difference between add,concatenate,without concatenate?</title>
      <link>https://community.qlik.com/t5/QlikView/What-is-difference-between-add-concatenate-without-concatenate/m-p/397049#M1163075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Johannes, I am loading from QVD files for last 4 years from 4 different file; as the structure are same they all concatenate automatically. But I want to load only current year say 4th table as it has additional transactions. If add REPLACE/ADD LOAD with 4th and run Reload, only 4th table exists; all other data are not in QVW file. Please advise&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 09 Dec 2012 05:54:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/What-is-difference-between-add-concatenate-without-concatenate/m-p/397049#M1163075</guid>
      <dc:creator />
      <dc:date>2012-12-09T05:54:53Z</dc:date>
    </item>
  </channel>
</rss>

