<?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 Inner join with resident tables, table not found error. in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Inner-join-with-resident-tables-table-not-found-error/m-p/191697#M53679</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;by default, If you load exactly the same list of fields (same number of field and same name) than an existing table, QlikView concatenate your new load in the existing table. When you load TktAnterior, QlikView concatenate data to the existing table TKT_ANT_TMP and don't create TktAnterior.&lt;/P&gt;&lt;P&gt;The NOCONCATENATE instruction (see below) should solve the problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;TktAnterior:&lt;BR /&gt;&lt;BR /&gt;LOAD PREVIOUS(TicketActual) AS TicketAnterior,&lt;BR /&gt; TicketActual,&lt;BR /&gt; NumeroAbonado&lt;BR /&gt;RESIDENT TKT_ANT_TMP;&lt;BR /&gt;DROP TABLE TKT_ANT_TMP;&lt;BR /&gt;//then i try to do an inner join between the resident and another table:&lt;BR /&gt;TicketAnterior_tmp:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;NOCONCATENATE&lt;/STRONG&gt; LOAD TicketAnterior,&lt;BR /&gt; TicketActual,&lt;BR /&gt; NumeroAbonado&lt;BR /&gt;RESIDENT TktAnterior_tmp;&lt;BR /&gt;DROP TABLE TktAnterior_tmp;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Dec 2009 00:00:21 GMT</pubDate>
    <dc:creator />
    <dc:date>2009-12-18T00:00:21Z</dc:date>
    <item>
      <title>Inner join with resident tables, table not found error.</title>
      <link>https://community.qlik.com/t5/QlikView/Inner-join-with-resident-tables-table-not-found-error/m-p/191696#M53678</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;I have this script and i'm getting the 'Table Not Found' error. Basically I load a resident table, and then when i try to join it (inner join) with another table i get this error. Can anyone tell me what its wrong here?&lt;/P&gt;&lt;P&gt;//load the table:&lt;/P&gt;&lt;P&gt;TKT_ANT_TMP:&lt;BR /&gt;&lt;BR /&gt;LOAD MAX(TicketId) AS TicketActual,&lt;BR /&gt; NumeroAbonado&lt;BR /&gt;FROM Int_Item.QVD (qvd)&lt;BR /&gt;GROUP BY NumeroAbonado;&lt;/P&gt;&lt;P&gt;TktAnterior:&lt;BR /&gt;&lt;BR /&gt;LOAD PREVIOUS(TicketActual) AS TicketAnterior,&lt;BR /&gt; TicketActual,&lt;BR /&gt; NumeroAbonado&lt;BR /&gt;RESIDENT TKT_ANT_TMP;&lt;BR /&gt;DROP TABLE TKT_ANT_TMP;&lt;/P&gt;&lt;P&gt;//then i try to do an inner join between the resident and another table:&lt;/P&gt;&lt;P&gt;TicketAnterior_tmp:&lt;BR /&gt;&lt;BR /&gt;LOAD TicketAnterior,&lt;BR /&gt; TicketActual,&lt;BR /&gt; NumeroAbonado&lt;BR /&gt;RESIDENT TktAnterior_tmp;&lt;BR /&gt;DROP TABLE TktAnterior_tmp;&lt;BR /&gt;&lt;BR /&gt;inner join (TicketAnterior_tmp)&lt;BR /&gt;&lt;BR /&gt;LOAD TicketId AS TicketAnterior,&lt;BR /&gt; ProcessInstanceId,&lt;BR /&gt; Ticket_FechaCierre as FechaCierreTktAnt&lt;BR /&gt;FROM Int_Tickets.QVD (qvd);&lt;/P&gt;&lt;P&gt;//here i get: TABLE NOT FOUND (TicketAnterior_tmp)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Dec 2009 22:24:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inner-join-with-resident-tables-table-not-found-error/m-p/191696#M53678</guid>
      <dc:creator />
      <dc:date>2009-12-17T22:24:42Z</dc:date>
    </item>
    <item>
      <title>Inner join with resident tables, table not found error.</title>
      <link>https://community.qlik.com/t5/QlikView/Inner-join-with-resident-tables-table-not-found-error/m-p/191697#M53679</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;by default, If you load exactly the same list of fields (same number of field and same name) than an existing table, QlikView concatenate your new load in the existing table. When you load TktAnterior, QlikView concatenate data to the existing table TKT_ANT_TMP and don't create TktAnterior.&lt;/P&gt;&lt;P&gt;The NOCONCATENATE instruction (see below) should solve the problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE style="overflow-x: scroll;"&gt;&lt;PRE style="margin: 0px;"&gt;&lt;BR /&gt;TktAnterior:&lt;BR /&gt;&lt;BR /&gt;LOAD PREVIOUS(TicketActual) AS TicketAnterior,&lt;BR /&gt; TicketActual,&lt;BR /&gt; NumeroAbonado&lt;BR /&gt;RESIDENT TKT_ANT_TMP;&lt;BR /&gt;DROP TABLE TKT_ANT_TMP;&lt;BR /&gt;//then i try to do an inner join between the resident and another table:&lt;BR /&gt;TicketAnterior_tmp:&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;NOCONCATENATE&lt;/STRONG&gt; LOAD TicketAnterior,&lt;BR /&gt; TicketActual,&lt;BR /&gt; NumeroAbonado&lt;BR /&gt;RESIDENT TktAnterior_tmp;&lt;BR /&gt;DROP TABLE TktAnterior_tmp;&lt;BR /&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt; &lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2009 00:00:21 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inner-join-with-resident-tables-table-not-found-error/m-p/191697#M53679</guid>
      <dc:creator />
      <dc:date>2009-12-18T00:00:21Z</dc:date>
    </item>
    <item>
      <title>Inner join with resident tables, table not found error.</title>
      <link>https://community.qlik.com/t5/QlikView/Inner-join-with-resident-tables-table-not-found-error/m-p/191698#M53680</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot for your answer Bertrand!&lt;/P&gt;&lt;P&gt;Now works fine, i didn't know about the concatenate by the default.&lt;/P&gt;&lt;P&gt;Great to have this forums!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Dec 2009 00:11:38 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Inner-join-with-resident-tables-table-not-found-error/m-p/191698#M53680</guid>
      <dc:creator />
      <dc:date>2009-12-18T00:11:38Z</dc:date>
    </item>
  </channel>
</rss>

