<?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; the table is there and loads data rows ... in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/table-not-found-error-the-table-is-there-and-loads-data-rows/m-p/98110#M755672</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As we do not see the entire script, My guess is you are concatenating&amp;nbsp; "&lt;STRONG&gt;EmployeeCostCenterDG111"&lt;/STRONG&gt; into the prior table. Once it is concatenated into the prior table that table is not available and that is the reason you are getting that error. I think you need "NoConcatenate" like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EmployeeCostCenterDG111:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Sep 2018 19:34:51 GMT</pubDate>
    <dc:creator>trdandamudi</dc:creator>
    <dc:date>2018-09-21T19:34:51Z</dc:date>
    <item>
      <title>table not found error; the table is there and loads data rows ...</title>
      <link>https://community.qlik.com/t5/QlikView/table-not-found-error-the-table-is-there-and-loads-data-rows/m-p/98109#M755671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Below is the end of my load script with error Error: Table 'EmployeeCostCenterDG111' not found.&lt;/P&gt;&lt;P&gt;I have tried everything I know to do, the 111 in the table name is just for troubleshooting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Has anybody got a work around or a fix? I used Find in the script editor to verify the table names are exactly the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2706 &lt;STRONG&gt;EmployeeCostCenterDG111:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2707 LOAD&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2708&amp;nbsp; AutoNumber(OfficerNbr &amp;amp; '-' &amp;amp; [Assignment Start Date], 'EmployeeCenterKey') as EmployeeCenterKey,&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2709&amp;nbsp; *&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2710 &lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2711 LOAD&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2712&amp;nbsp; OfficerNbr,&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2713&amp;nbsp; EffectiveDate as [Assignment Start Date],&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2714 &lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2715&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2716&amp;nbsp; if( OfficerNbr = peek('OfficerNbr'),date(peek('Assignment Start Date')-1), if(not isnull(EmployeeEndDate), Today(), AddMonths(Today(),15))) as [Assignment End Date], &lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2717&amp;nbsp; [Cost Center]&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2718 RESIDENT Temp_EmployeeCostCenter&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2719 Where isnull(EmployeeEndDate) or (not isnull(EmployeeEndDate) and&amp;nbsp; (EffectiveDate &amp;lt; EmployeeEndDate))&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2720 Order By OfficerNbr, EffectiveDate DESC&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 5 fields found: EmployeeCenterKey, OfficerNbr, Assignment Start Date, Assignment End Date, Cost Center, &lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;2,884 lines fetched&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2745 Temp_DGdate_Match:&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2746 IntervalMatch ([DGdate],OfficerNbr) LOAD&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2747&amp;nbsp; [Assignment Start Date],&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2748&amp;nbsp; [Assignment End Date],&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2749&amp;nbsp; OfficerNbr&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14 2750 &lt;STRONG&gt;RESIDENT EmployeeCostCenterDG111&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:14&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;STRONG&gt;&amp;nbsp; Error: Table 'EmployeeCostCenterDG111' not found&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:54&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Execution Failed&lt;/P&gt;&lt;P&gt;2018-09-21 15:21:54&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Execution finished.&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-the-table-is-there-and-loads-data-rows/m-p/98109#M755671</guid>
      <dc:creator>wynnjimbbt</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: table not found error; the table is there and loads data rows ...</title>
      <link>https://community.qlik.com/t5/QlikView/table-not-found-error-the-table-is-there-and-loads-data-rows/m-p/98110#M755672</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As we do not see the entire script, My guess is you are concatenating&amp;nbsp; "&lt;STRONG&gt;EmployeeCostCenterDG111"&lt;/STRONG&gt; into the prior table. Once it is concatenated into the prior table that table is not available and that is the reason you are getting that error. I think you need "NoConcatenate" like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Noconcatenate&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EmployeeCostCenterDG111:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;...&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2018 19:34:51 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/table-not-found-error-the-table-is-there-and-loads-data-rows/m-p/98110#M755672</guid>
      <dc:creator>trdandamudi</dc:creator>
      <dc:date>2018-09-21T19:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: table not found error; the table is there and loads data rows ...</title>
      <link>https://community.qlik.com/t5/QlikView/table-not-found-error-the-table-is-there-and-loads-data-rows/m-p/98111#M755673</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you share the script you are trying to run? Are you using any joins in your tables where DG111 is getting joined?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2018 19:42:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/table-not-found-error-the-table-is-there-and-loads-data-rows/m-p/98111#M755673</guid>
      <dc:creator>vishsaggi</dc:creator>
      <dc:date>2018-09-21T19:42:28Z</dc:date>
    </item>
  </channel>
</rss>

