<?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: Table not Found Error-Incremental Load in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131765#M910405</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nicole , above works fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest how to implement incremental load in case of real time scenario where we have more than one table to upload on daily basis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jun 2016 23:47:24 GMT</pubDate>
    <dc:creator />
    <dc:date>2016-06-16T23:47:24Z</dc:date>
    <item>
      <title>Table not Found Error-Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131763#M910403</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 am implementing Incremental load by following procedure mentioned as per below link but I am getting "Table not found error", this error is occurring in below highlighted section inside script, it seems that table "Incremental" is not getting created &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have attached screenshot of Data model and source data file, I have highlighted two new records which belongs to date 16th Jun 2016 in attached source data file which I want to load using incremental load method&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Link&lt;/STRONG&gt;: &lt;A href="http://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" title="http://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/" target="_blank"&gt;http://www.analyticsvidhya.com/blog/2014/09/qlikview-incremental-load/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;&lt;STRONG&gt;Script:&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/*Product:&lt;/P&gt;&lt;P&gt;LOAD Product_Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product_Name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product_Type, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order_Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modified_Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&lt;C&gt;&lt;/C&gt;&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is IMS_Product);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Product into Product.qvd(qvd);&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Product:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;LOAD&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; line-height: 1.5em;"&gt;Product_Id, &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt; Product_Name, &lt;/P&gt;&lt;P&gt; Product_Type, &lt;/P&gt;&lt;P&gt; Order_Id, &lt;/P&gt;&lt;P&gt; Modified_Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Product.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last_Updated_Date:&lt;/P&gt;&lt;P&gt;LOAD Max(Modified_Date) as Max_Date&lt;/P&gt;&lt;P&gt;resident Product;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let Last_Modified_Date=peek('Max_Date',0,'Last_Updated_Date');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Incremental:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Product_Id, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Product_Name, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Product_Type, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Order_Id, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Modified_Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;C&gt;&lt;/C&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(ooxml, embedded labels, table is IMS_Product) WHERE Modified_Date&amp;gt;$(Last_Modified_Date);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Concatenate&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;LOAD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Product_Id, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; Product_Name, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; Product_Type, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; Order_Id, &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt; Modified_Date&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FROM&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Product.qvd(qvd) WHERE not Exists(Product_Id);&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data Model:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="Screenshot.jpeg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/128163_Screenshot.jpeg" style="height: 349px; width: 620px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Nov 2020 16:16:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131763#M910403</guid>
      <dc:creator />
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table not Found Error-Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131764#M910404</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Because all of your fields in the Product and Incremental tables are the same, it's automatically concatenating everything from the Incremental table to the Product table that is already loaded in.&amp;nbsp; If you do not want it to automatically concatenate the two, use the keyword "NOCONCATENATE" before your LOAD:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Incremental:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;NOCONCATENATE LOAD&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;Product_Id,&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 15:46:04 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131764#M910404</guid>
      <dc:creator>Nicole-Smith</dc:creator>
      <dc:date>2016-06-16T15:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table not Found Error-Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131765#M910405</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Nicole , above works fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest how to implement incremental load in case of real time scenario where we have more than one table to upload on daily basis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jun 2016 23:47:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131765#M910405</guid>
      <dc:creator />
      <dc:date>2016-06-16T23:47:24Z</dc:date>
    </item>
    <item>
      <title>Re: Table not Found Error-Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131766#M910406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi VSharma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/* Product:&lt;/P&gt;&lt;P&gt;LOAD Product_Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product_Name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product_Type, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order_Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modified_Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;C:\Users\admin\Downloads\IMS_Data.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is IMS_Product);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Product into Product.qvd(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Product:&lt;/P&gt;&lt;P&gt;LOAD Product_Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product_Name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product_Type, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order_Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modified_Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;D:\QlikView\Product.qvd&lt;/P&gt;&lt;P&gt;(qvd);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Last_Updated_Date:&lt;/P&gt;&lt;P&gt;LOAD Max(Modified_Date) as Max_Date&lt;/P&gt;&lt;P&gt;resident Product;&lt;/P&gt;&lt;P&gt;drop Table Product;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let Last_Modified_Date=peek('Max_Date',0,'Last_Updated_Date');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Incremental:&lt;/P&gt;&lt;P&gt;LOAD Product_Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product_Name, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Product_Type, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Order_Id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Modified_Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;C:\Users\admin\Downloads\IMS_Data.xlsx&lt;/P&gt;&lt;P&gt;(ooxml, embedded labels, table is IMS_Product)&lt;/P&gt;&lt;P&gt;WHERE Modified_Date&amp;gt;$(Last_Modified_Date);&lt;/P&gt;&lt;P&gt;Concatenate&lt;/P&gt;&lt;P&gt;LOAD&lt;/P&gt;&lt;P&gt;Product_Id,&lt;/P&gt;&lt;P&gt;Product_Name,&lt;/P&gt;&lt;P&gt;Product_Type,&lt;/P&gt;&lt;P&gt;Order_Id,&lt;/P&gt;&lt;P&gt;Modified_Date&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;Product.qvd(qvd) WHERE not Exists(Product_Id);&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STORE Incremental into Product.qvd(qvd);&lt;/P&gt;&lt;P&gt;drop Table Last_Updated_Date;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 09:01:10 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131766#M910406</guid>
      <dc:creator>lalitkgehlot89</dc:creator>
      <dc:date>2016-06-17T09:01:10Z</dc:date>
    </item>
    <item>
      <title>Re: Table not Found Error-Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131767#M910407</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi lalit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above mentioned procedure is for single table, please suggest how to implement incremental load in case of more than one table like in live projects where we used to receive records to upload on daily basis &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 10:05:09 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131767#M910407</guid>
      <dc:creator />
      <dc:date>2016-06-17T10:05:09Z</dc:date>
    </item>
    <item>
      <title>Re: Table not Found Error-Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131768#M910408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vsharma,&lt;/P&gt;&lt;P&gt;In live project we normally use 3 tire architecture&amp;nbsp; and at stage1 we write incremental load script for each table separately.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Lalit kumar &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 10:32:15 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131768#M910408</guid>
      <dc:creator>lalitkgehlot89</dc:creator>
      <dc:date>2016-06-17T10:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Table not Found Error-Incremental Load</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131769#M910409</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks lalit, so in this case there should be multiple QVDs associated with single dashboard, please correct me if I am wrong&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, please suggest how do we proceed further with these QVDs in remaining 2 tiers like I mean from development environment to production&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 17 Jun 2016 11:09:44 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-Found-Error-Incremental-Load/m-p/1131769#M910409</guid>
      <dc:creator />
      <dc:date>2016-06-17T11:09:44Z</dc:date>
    </item>
  </channel>
</rss>

