<?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 when creating qvd file in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187881#M885961</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sydney, maybe is using autoconcatenation becasuse the last table (left join with products) returns the same fields wich are loaded in FinalResult.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to avoid this you can use 'NoConcatenate':&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FinalResult:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;NoConcatenate &lt;/SPAN&gt;load *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;resident Product;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, the FinalResult Table will have the same as the products table, and if you achive to load in different tables it will associate all fields from Products and FinalResult Tables. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 19 Sep 2016 15:24:32 GMT</pubDate>
    <dc:creator>rubenmarin</dc:creator>
    <dc:date>2016-09-19T15:24:32Z</dc:date>
    <item>
      <title>Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187879#M885959</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'm learning Qlikview.&amp;nbsp; I tried to create the below sample code.&amp;nbsp; &lt;/P&gt;&lt;P&gt;When I tried to refresh the document, I get the following error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table not found&lt;/P&gt;&lt;P&gt;store FinalResult into C:\temp\FinalResult.qvd(qvd)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can someone explain to me why and what I'm doing wrong?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you.&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 * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; ProductID, Desc&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1, MOUSE&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2, KEYBOARD&lt;/P&gt;&lt;P&gt;&amp;nbsp; 3, DRIVE&lt;/P&gt;&lt;P&gt;&amp;nbsp; 4, MEMORY&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cost:&lt;/P&gt;&lt;P&gt;load * inline&lt;/P&gt;&lt;P&gt;[&lt;/P&gt;&lt;P&gt;&amp;nbsp; ProductID, Cost&lt;/P&gt;&lt;P&gt;&amp;nbsp; 1, 8.50&lt;/P&gt;&lt;P&gt;&amp;nbsp; 2, 9.50&lt;/P&gt;&lt;P&gt;&amp;nbsp; 3, 10.50&lt;/P&gt;&lt;P&gt;];&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;left join (Product)&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;resident Cost;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FinalResult:&lt;/P&gt;&lt;P&gt;load *&lt;/P&gt;&lt;P&gt;resident Product;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;store FinalResult into C:\temp\FinalResult.qvd(qvd);&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-when-creating-qvd-file/m-p/1187879#M885959</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-11-25T16:16:04Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187880#M885960</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sydney,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When two tables have the same structure (as your Product table after the left join and your FinalResult table will have), QlikView automatically concatenates (unions) the two tables so FinalResult never gets created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have 2 options&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;prevent the concatenation (put 'NOCONCATENATE' before 'load' in your FinalResult load.&lt;/LI&gt;&lt;LI&gt;just store the product table, or rename the product table if you prefer.&lt;/LI&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 15:23:55 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187880#M885960</guid>
      <dc:creator>dominicmander</dc:creator>
      <dc:date>2016-09-19T15:23:55Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187881#M885961</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sydney, maybe is using autoconcatenation becasuse the last table (left join with products) returns the same fields wich are loaded in FinalResult.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to avoid this you can use 'NoConcatenate':&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;FinalResult:&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;NoConcatenate &lt;/SPAN&gt;load *&lt;/P&gt;&lt;P style="font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; color: #3d3d3d;"&gt;resident Product;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW, the FinalResult Table will have the same as the products table, and if you achive to load in different tables it will associate all fields from Products and FinalResult Tables. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 15:24:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187881#M885961</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-09-19T15:24:32Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187882#M885962</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sydney,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this instead:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Product:&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 10pt;"&gt;load&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;inline&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;[&lt;BR /&gt; &lt;BR /&gt; ProductID, Desc&lt;BR /&gt; 1, MOUSE&lt;BR /&gt; 2, KEYBOARD&lt;BR /&gt; 3, DRIVE&lt;BR /&gt; 4, MEMORY&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;;&lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;Left&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;Join&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt; Cost:&lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 10pt;"&gt;load&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;inline&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;&lt;BR /&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800000; font-size: 10pt;"&gt;[&lt;BR /&gt; ProductID, Cost&lt;BR /&gt; 1, 8.50&lt;BR /&gt; 2, 9.50&lt;BR /&gt; 3, 10.50&lt;BR /&gt; ]&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;;&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;/SPAN&gt;&lt;STRONG style=": ; color: #0000ff; font-size: 10pt;"&gt;Store&lt;/STRONG&gt;&lt;SPAN style="font-size: 10pt;"&gt; * &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;from&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; Product &lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;into&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt; c:\Temp\FinalResult.qvd(&lt;/SPAN&gt;&lt;SPAN style="color: #0000ff; font-size: 10pt;"&gt;qvd&lt;/SPAN&gt;&lt;SPAN style="font-size: 10pt;"&gt;); &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;make sure c:\temp exists&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Andy&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 15:29:32 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187882#M885962</guid>
      <dc:creator>awhitfield</dc:creator>
      <dc:date>2016-09-19T15:29:32Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187883#M885963</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dominic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I placed "noconcatenate" as you suggested, it worked and I got this result which was expected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="192"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl63" height="20" width="64"&gt;ProductID&lt;/TD&gt;&lt;TD class="xl63" width="64"&gt;Desc&lt;/TD&gt;&lt;TD class="xl63" width="64"&gt;Cost&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;1&lt;/TD&gt;&lt;TD class="xl63"&gt;MOUSE&lt;/TD&gt;&lt;TD class="xl63"&gt;8.5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;2&lt;/TD&gt;&lt;TD class="xl63"&gt;KEYBOARD&lt;/TD&gt;&lt;TD class="xl63"&gt;9.5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;3&lt;/TD&gt;&lt;TD class="xl63"&gt;DRIVE&lt;/TD&gt;&lt;TD class="xl63"&gt;10.5&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl63" height="20"&gt;4&lt;/TD&gt;&lt;TD class="xl63"&gt;MEMORY&lt;/TD&gt;&lt;TD class="xl63"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You said "&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;QlikView automatically concatenates (unions) the two tables so FinalResult never gets created.".&amp;nbsp; I don't think I fully understand this.&amp;nbsp; UNION in sql means combining two sets of data having the same number of fields/columns.&amp;nbsp; So if QV "unions" my Product and FinalResult, I would expect eight rows in my result each having a duplicate unless QV drops the duplicates.&amp;nbsp; Can you clarify this please?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 15:45:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187883#M885963</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-19T15:45:43Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187884#M885964</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Correct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, if you removed the last line of your original script (store FinalResult....) and ran the script as it was (i.e. without the noconcatenate), and then look at the table viewer, you should see the Product table there and if you right click and select preview you should see it contains 8 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To access the table viewer use the shortcut Ctrl+T or the second button from the right on the design toolbar (you should enable this by the way if you haven't ... it's very useful, right click in blank space by the toolbars at the top of the window and check 'design')&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 16:28:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187884#M885964</guid>
      <dc:creator>dominicmander</dc:creator>
      <dc:date>2016-09-19T16:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187885#M885966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dominic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm exploring my script keeping your replies in mind.&amp;nbsp; Yes, the table viewer shows 8 rows on the Product table.&lt;/P&gt;&lt;P&gt;The Cost table is disabled.&amp;nbsp; When I opened the "$Syn_1_Table", I see ProductID and Cost.&amp;nbsp; My question how does QV know how to relate the "Desc" back to the ProductID??&amp;nbsp; I'm not getting the whole picture of how things are tied back.&lt;/P&gt;&lt;P&gt;Thanks for your help &amp;amp; time.&lt;/P&gt;&lt;P&gt;&lt;IMG alt="qv1.jpg" class="jive-image image-1" src="https://community.qlik.com/legacyfs/online/137914_qv1.jpg" style="height: auto;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 18:08:41 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187885#M885966</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-19T18:08:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187886#M885967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also I don't understand why it created a synthetic key since I only have one columns (ProductID) which is common to both tables.&amp;nbsp; The Help says "&lt;SPAN style="color: #0f0f0f; font-family: 'Open Sans', Arial, sans-serif; font-size: 14px;"&gt; tables have two or more fields in common"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.qlik.com/en-US/sense/3.0/Subsystems/Hub/Content/Scripting/synthetic-keys.htm" title="https://help.qlik.com/en-US/sense/3.0/Subsystems/Hub/Content/Scripting/synthetic-keys.htm"&gt;https://help.qlik.com/en-US/sense/3.0/Subsystems/Hub/Content/Scripting/synthetic-keys.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 Sep 2016 19:04:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187886#M885967</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-19T19:04:59Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187887#M885968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sydney, the tables have two fields in common: 'ProductID' and 'Cost'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To avoid the synthetic key you can:&lt;/P&gt;&lt;P&gt;- If the Cost field in both tables have the same value you can remove the field from one of the tables or remove the entire Cost table&lt;/P&gt;&lt;P&gt;, Rename one of the Cost Fields so they are no longer common fields&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 07:32:49 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187887#M885968</guid>
      <dc:creator>rubenmarin</dc:creator>
      <dc:date>2016-09-20T07:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187888#M885969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sydney,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe if I explain what the script is doing it will become clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your first inline load creates the product table (with productID and desc).&lt;/P&gt;&lt;P&gt;Your second inline load creates the cost table (with productID and cost).&lt;/P&gt;&lt;P&gt;Your third load statement (with the left join) loads * from the cost table and joins it&amp;nbsp; to the products table &lt;SPAN style="font-size: 13.3333px;"&gt;(using whatever fields are common between the two i.e. productID ...&lt;/SPAN&gt; so the product table now has productID and desc and cost, and the cost table remains unchanged and still in the data model).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case ... if the end result you want is one table with all three fields in it, then I would put the left join before the inline load for the cost table and never create the cost table as a table in it's own right ... just join it straight to product. The alternative would be to drop the cost table after you are done with it (DROP TABLE Cost;). There will be times when you want to perform some other transformations on a table before joining it which will mean you have to create a temporary table and then drop it, but it's always good to try to keep your script as efficient as possible and in this case it is not necessary.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 08:14:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187888#M885969</guid>
      <dc:creator>dominicmander</dc:creator>
      <dc:date>2016-09-20T08:14:59Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187889#M885970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dominic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I really appreciate your time in explaining my sample script.&amp;nbsp; Now I understand.&amp;nbsp; QV really forces me to think "differently" as my professional career is a MSSQL DBA.&amp;nbsp; This is why I said I only have one column which is common in my tables.&amp;nbsp; My tables being the sources without having any JOINS operated on yet.&amp;nbsp; After I did the "drop table Cost", I was left with only the Product table which has all the fields on it with 8 rows (including dupes).&amp;nbsp; The dupes exist due to how the code was written in above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to everyone who responded !!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 12:57:30 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187889#M885970</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-20T12:57:30Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187890#M885971</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No problem. It is a bit of a different way of thinking, but equally logical I feel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One thing that I still find very useful even though I have been doing this for years is dropping an EXIT SCRIPT; statement in and reloading and then using the table viewer to see what state the data model is in at a certain stage.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On a side note, it helps me and helps others searching for solutions to their own questions if you can mark a question as answered/helpful. More info on that &lt;A _jive_internal="true" href="https://community.qlik.com/docs/DOC-14806"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 13:58:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187890#M885971</guid>
      <dc:creator>dominicmander</dc:creator>
      <dc:date>2016-09-20T13:58:14Z</dc:date>
    </item>
    <item>
      <title>Re: Table not found when creating qvd file</title>
      <link>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187891#M885974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the tip about adding "exit script;" I just tried it.&amp;nbsp; It's indeed very helpful.&amp;nbsp; It's like "debug" in other programming languages.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Sep 2016 14:12:07 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Table-not-found-when-creating-qvd-file/m-p/1187891#M885974</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2016-09-20T14:12:07Z</dc:date>
    </item>
  </channel>
</rss>

