<?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: Bug or misunderstanding? in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631726#M1092801</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even with a new name for the table qlik will concatenate, this because the fields list is the same, if you add another field in the second table this will not happen anymore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 May 2014 13:50:59 GMT</pubDate>
    <dc:creator>alexandros17</dc:creator>
    <dc:date>2014-05-13T13:50:59Z</dc:date>
    <item>
      <title>Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631720#M1092795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have question regarding the automatic concatenation of tables in QlikView.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say we have the following code in a load script:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table1_temp:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD Value, Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT * FROM database;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD Value, Date Resident Table1_temp Order By Date asc;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;DROP Table Table1_temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I had initially assumed that this would result in one Table1 with its records sorted by Date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It turned out, that I was wrong. QlikView automatically concatenates the two tables into one Table called Table1_temp. This Table contains all records in the original order followed by the records ordered by Date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It took some time to find my error. My question is:&lt;/P&gt;&lt;P&gt;Is this a bug? I would expect this behavior if I hadn't defined a new name for the table...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What do you think?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just to clarify this post. I know how to avoid this behavior. I was just wondering, if I am the only one who expected it to be different &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Till&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nachricht geändert durch Till Bentz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:39:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631720#M1092795</guid>
      <dc:creator>till_bentz</dc:creator>
      <dc:date>2014-05-13T13:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631721#M1092796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is a normal behaviour, to avoid use noconcatenate:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1_temp:&lt;/P&gt;&lt;P&gt;LOAD Value, Date;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM database;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table1:&lt;/P&gt;&lt;P&gt;noconcatenate&lt;/P&gt;&lt;P&gt;LOAD Value, Date Resident Table1_temp Order By Date asc;&lt;/P&gt;&lt;P&gt;DROP Table Table1_temp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:41:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631721#M1092796</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-05-13T13:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631722#M1092797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Hi &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Try below code&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table1_temp:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD Value, &lt;SPAN class="fo5p59elo24"&gt;Date&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT * FROM &lt;SPAN class="fo5p59elo24"&gt;database&lt;/SPAN&gt;;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; no concatenate&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD Value, Date Resident Table1_temp Order By Date asc;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;SPAN class="fo5p59elo24"&gt;DROP Table&lt;/SPAN&gt; Table1_temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Regards&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ASHFAQ&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:44:00 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631722#M1092797</guid>
      <dc:creator>ashfaq_haseeb</dc:creator>
      <dc:date>2014-05-13T13:44:00Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631723#M1092798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks. I know it seems to be normal behavior. I also found the solution you suggested. But I still think it is at least confusing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I purposefully assigned a new name to the table so I would expect, that it would not be concatenated automatically...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:44:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631723#M1092798</guid>
      <dc:creator>till_bentz</dc:creator>
      <dc:date>2014-05-13T13:44:59Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631724#M1092799</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why should QlikView change the name of an existing table and redefine it? I would expect the behaviour to be the other way around.. once a table has been loaded, check if there's already a loaded table with the same fields. If yes, concatenate, if not, create a different table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:45:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631724#M1092799</guid>
      <dc:creator>simondachstr</dc:creator>
      <dc:date>2014-05-13T13:45:24Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631725#M1092800</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;QlikView should "change" the name because I gave it the instruction to do so by adding &lt;SPAN style="font-family: 'courier new', courier;"&gt;Table1:&lt;/SPAN&gt; in front of the Load statement (at least that is my understanding of the code &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I want to concatenate it to an existing table with the same fields, I wouldn't define a name for it...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:49:40 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631725#M1092800</guid>
      <dc:creator>till_bentz</dc:creator>
      <dc:date>2014-05-13T13:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631726#M1092801</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even with a new name for the table qlik will concatenate, this because the fields list is the same, if you add another field in the second table this will not happen anymore&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:50:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631726#M1092801</guid>
      <dc:creator>alexandros17</dc:creator>
      <dc:date>2014-05-13T13:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631727#M1092802</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Hello,also&amp;nbsp; in this way, renaming the field in the 2nd load should not concatenate&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Table1_temp:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;LOAD Value, Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;SQL SELECT * FROM database;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;LOAD Value, Date as NewDate Resident Table1_temp Order By Date asc;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;DROP Table Table1_temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:52:22 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631727#M1092802</guid>
      <dc:creator />
      <dc:date>2014-05-13T13:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631728#M1092803</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try to load like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Table1_temp:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;LOAD Value, Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;SQL SELECT * FROM database;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Noconcatenate&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;LOAD Value, Date Resident Table1_temp Order By Date asc;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;DROP Table Table1_temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Or&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Try to add a dummy field like 1 as Value then the situation different &lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Table1_temp:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;LOAD Value, Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;SQL SELECT * FROM database;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Table1:&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;LOAD Value, Date, &lt;STRONG&gt;1 as Value&lt;/STRONG&gt; Resident Table1_temp Order By Date asc;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;DROP Table Table1_temp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Normally when we load a table from any table as resident if there is same field name qlikview refers the previous table name and for new table it creates newname try to rename the field or you can use Noconcatenate then see the difference.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-family: 'courier new', courier;"&gt;Hope this helps&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:54:37 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631728#M1092803</guid>
      <dc:creator>its_anandrjs</dc:creator>
      <dc:date>2014-05-13T13:54:37Z</dc:date>
    </item>
    <item>
      <title>Re: Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631729#M1092804</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's true - the concatenation is being done automatically because if not, then you'll get a fantastic synthetic key containing a mix of all fields at the end (which would eventually crash at the end of the load).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:55:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631729#M1092804</guid>
      <dc:creator>simondachstr</dc:creator>
      <dc:date>2014-05-13T13:55:10Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631730#M1092805</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is the expected behavior.&lt;/P&gt;&lt;P&gt;When you load a table with the exactly the same set of fields as a previously loaded table, it is auto-concatenated to the previously loaded table.&amp;nbsp; It doesn't matter if you assign a ne label or not, or if there is a label at all.&amp;nbsp; It doesn't matter when the first table was loaded - just before the second, or way before.&amp;nbsp; The set of fields is only what matters.&lt;/P&gt;&lt;P&gt;As others has said, you can use NOCONCATENATE to avoid this.&lt;/P&gt;&lt;P&gt;In your case, you can use order in the first table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:56:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631730#M1092805</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-13T13:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631731#M1092806</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can I order the first table? Whenever I tried to order directly in preceding loads I got errors with non existing fields or something like that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 13:59:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631731#M1092806</guid>
      <dc:creator>till_bentz</dc:creator>
      <dc:date>2014-05-13T13:59:32Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631732#M1092807</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think it works in the preceding load.&amp;nbsp; This is what I mean:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Table1_temp:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;LOAD Value, Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;SQL SELECT Value, Date FROM database&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;ORDER BY Date;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: 'courier new', courier;"&gt;Wondering why do you need order.&amp;nbsp; Are you using it further in the script?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 14:08:23 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631732#M1092807</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2014-05-13T14:08:23Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631733#M1092808</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Table1_temp:&lt;/P&gt;&lt;P&gt;LOAD Value, Date;&lt;/P&gt;&lt;P&gt;SQL SELECT * FROM DATABASE order by Date asc;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 14:08:34 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631733#M1092808</guid>
      <dc:creator />
      <dc:date>2014-05-13T14:08:34Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631734#M1092809</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Till.&lt;/P&gt;&lt;P&gt;This is the expected behavior according to the Reference Manual and not a bug.&lt;/P&gt;&lt;P&gt;From the Reference Manual:&lt;/P&gt;&lt;P&gt;Each load or select statement generates a table. Normally, QlikView treats the result of each one of these as&lt;/P&gt;&lt;P&gt;one logical table. However, there are a couple of exceptions from this rule:&lt;/P&gt;&lt;P&gt;- If two or more statements result in tables with identical field names, the tables are concatenated and&lt;/P&gt;&lt;P&gt;treated as one logical table.&lt;/P&gt;&lt;P&gt;The NoConcatenate prefix forces two loaded tables with identical field sets to be treated as two separate&lt;/P&gt;&lt;P&gt;internal tables, when they otherwise would be automatically be concatenated.&lt;/P&gt;&lt;P&gt;I hope it helps,&lt;/P&gt;&lt;P&gt;Carlos&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 14:20:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631734#M1092809</guid>
      <dc:creator>cfz</dc:creator>
      <dc:date>2014-05-13T14:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631735#M1092810</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I can't use the order by on SQL level, because in my real application I already have several preceding loads.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And yes, I need the order, because later on I rely on them being ordered by date to find specific values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 14:20:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631735#M1092810</guid>
      <dc:creator>till_bentz</dc:creator>
      <dc:date>2014-05-13T14:20:55Z</dc:date>
    </item>
    <item>
      <title>Re: Bug or misunderstanding?</title>
      <link>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631736#M1092811</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess what I would have expected is, that naming a table would result in an implicit&amp;nbsp; NoConcatenate...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Especially when you have long load scripts this might save you from confusions during development...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 14:24:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Bug-or-misunderstanding/m-p/631736#M1092811</guid>
      <dc:creator>till_bentz</dc:creator>
      <dc:date>2014-05-13T14:24:10Z</dc:date>
    </item>
  </channel>
</rss>

