<?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 An empty table causes loading to fail in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286400#M710082</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 have this serious problem with an empty table. The data comes in csv-file and it is empty. When loading data (in ETL-process) in and concatenating it with existing qvd-file "the loading" fails. The code that I'm using is here: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;// Load data from source&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;Temporary:&lt;/P&gt;&lt;P&gt;LOAD date(@1, 'D-M-YYYY') as transaction_date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; right(@2, 3) as work_number,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; left(@2, 4) as project_id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3 as line_id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4 as qty, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @5 as area, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @6 as company_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'material transactions' as source_system_id&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(Data)\dwmtran.csv (txt, codepage is 1252, no labels, delimiter is ';', msq, header is 9 lines);&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;// Sort the data by date&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;Fact:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD * RESIDENT Temporary ORDER BY transaction_date; // CHANGE DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let maxQVDDay = Peek('transaction_date', 0, 'Fact'); // CHANGE THE COLUMN NAME&lt;/P&gt;&lt;P&gt;if $(maxQVDDay) &amp;lt;= "0" then &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;let maxQVDDay = DATE((TODAY() + 1));&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let companyID = Peek('company_id', 0, 'Fact');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;// Join data from QVD&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(qvdData)\fact_data.qvd (qvd)&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Load history rows for this company only and this source&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;(transaction_date &amp;lt; $(maxQVDDay) and company_id = $(companyID) and source_system_id = 'material transactions') // CHANGE THIS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Load all rows for all other companies&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;OR (company_id &amp;lt;&amp;gt; $(companyID))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Load all rows for all other sources&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;OR (source_system_id &amp;lt;&amp;gt; 'material transactions');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;// Store data back to QVD&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;STORE Fact INTO $(qvdData)\fact_data.qvd;&lt;/P&gt;&lt;P&gt;DROP TABLE Fact;&lt;/P&gt;&lt;P&gt;DROP TABLE Temporary;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that when searching the peek date QlikView returns&amp;nbsp; for maxQVDdate "NULL" value, which although is right (right?). The if-statement seems to be the problem but I don't know how to fix it. I want to loading to proceed even though the csv-file is empty. Do you have any idea how to fix this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mikko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jul 2011 09:02:25 GMT</pubDate>
    <dc:creator />
    <dc:date>2011-07-18T09:02:25Z</dc:date>
    <item>
      <title>An empty table causes loading to fail</title>
      <link>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286400#M710082</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 have this serious problem with an empty table. The data comes in csv-file and it is empty. When loading data (in ETL-process) in and concatenating it with existing qvd-file "the loading" fails. The code that I'm using is here: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;// Load data from source&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;Temporary:&lt;/P&gt;&lt;P&gt;LOAD date(@1, 'D-M-YYYY') as transaction_date, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; right(@2, 3) as work_number,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; left(@2, 4) as project_id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @3 as line_id, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @4 as qty, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @5 as area, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; @6 as company_id,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 'material transactions' as source_system_id&lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(Data)\dwmtran.csv (txt, codepage is 1252, no labels, delimiter is ';', msq, header is 9 lines);&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;// Sort the data by date&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;Fact:&lt;/P&gt;&lt;P&gt;NoConcatenate&lt;/P&gt;&lt;P&gt;LOAD * RESIDENT Temporary ORDER BY transaction_date; // CHANGE DATE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let maxQVDDay = Peek('transaction_date', 0, 'Fact'); // CHANGE THE COLUMN NAME&lt;/P&gt;&lt;P&gt;if $(maxQVDDay) &amp;lt;= "0" then &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;let maxQVDDay = DATE((TODAY() + 1));&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let companyID = Peek('company_id', 0, 'Fact');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;// Join data from QVD&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;CONCATENATE&lt;/P&gt;&lt;P&gt;LOAD * &lt;/P&gt;&lt;P&gt;FROM&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;$(qvdData)\fact_data.qvd (qvd)&lt;/P&gt;&lt;P&gt;WHERE&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Load history rows for this company only and this source&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;(transaction_date &amp;lt; $(maxQVDDay) and company_id = $(companyID) and source_system_id = 'material transactions') // CHANGE THIS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Load all rows for all other companies&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;OR (company_id &amp;lt;&amp;gt; $(companyID))&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;// Load all rows for all other sources&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;OR (source_system_id &amp;lt;&amp;gt; 'material transactions');&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;// Store data back to QVD&lt;/P&gt;&lt;P&gt;// -&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;STORE Fact INTO $(qvdData)\fact_data.qvd;&lt;/P&gt;&lt;P&gt;DROP TABLE Fact;&lt;/P&gt;&lt;P&gt;DROP TABLE Temporary;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that when searching the peek date QlikView returns&amp;nbsp; for maxQVDdate "NULL" value, which although is right (right?). The if-statement seems to be the problem but I don't know how to fix it. I want to loading to proceed even though the csv-file is empty. Do you have any idea how to fix this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mikko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2011 09:02:25 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286400#M710082</guid>
      <dc:creator />
      <dc:date>2011-07-18T09:02:25Z</dc:date>
    </item>
    <item>
      <title>An empty table causes loading to fail</title>
      <link>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286401#M710083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mikko,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you should test for NULL using isNull() function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2011 11:13:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286401#M710083</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-07-18T11:13:28Z</dc:date>
    </item>
    <item>
      <title>An empty table causes loading to fail</title>
      <link>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286402#M710084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi swuehl,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and thanks for reply. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to put OR-statement into if-statement (just trying something &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/happy.png" /&gt; ) as like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if $(maxQVDDay) &amp;lt;= "0"&amp;nbsp; OR $(maxQVDDay) = Null() then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let maxQVDDay = DATE((TODAY() + 1));&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And as you can guess, it did not work. How your statement "isNull(exp)" would help (and where to put it)? The csv-file is now empty but in future there will be data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mikko &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2011 11:41:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286402#M710084</guid>
      <dc:creator />
      <dc:date>2011-07-18T11:41:36Z</dc:date>
    </item>
    <item>
      <title>An empty table causes loading to fail</title>
      <link>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286403#M710085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Maybe you can use filesize() to test the size before trying to concatenate it: &lt;/P&gt;&lt;P class="MCDropDownBody" id="MCDropDownBody_1831114208_7"&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;filesize( 'xyz.xls' )&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Something like: &lt;/P&gt;&lt;P&gt;if (&amp;nbsp; &lt;SPAN class="Bold"&gt;filesize( 'xyz.xls' ) &amp;gt; ??? (you will have&amp;nbsp; to try some value that makes sense in your case ) ) then &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Temporary:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOAD date(@1, 'D-M-YYYY') as transaction_date, ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Erich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt; &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2011 12:30:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286403#M710085</guid>
      <dc:creator>erichshiino</dc:creator>
      <dc:date>2011-07-18T12:30:20Z</dc:date>
    </item>
    <item>
      <title>Re: An empty table causes loading to fail</title>
      <link>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286404#M710086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mikko,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking of something like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if isNull($(maxQVDDay))&amp;nbsp; then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let maxQVDDay = DATE((TODAY() + 1));&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Alternatively, you could check the number of rows read with function NoOfRows('tablename')&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold"&gt;LET numRowsFact = NoOfRows('Fact');&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if&amp;nbsp; $(numRowsFact) = 0&amp;nbsp; then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let maxQVDDay = DATE((TODAY() + 1));&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this should work better than filesize.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2011 12:39:50 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286404#M710086</guid>
      <dc:creator>swuehl</dc:creator>
      <dc:date>2011-07-18T12:39:50Z</dc:date>
    </item>
    <item>
      <title>Re: An empty table causes loading to fail</title>
      <link>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286405#M710087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi and thank you for helpful answers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried IsNull(exp) -statement but I faced another problem which comes next when joining the data with existing qvd file. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Checking the number of rows helps, although I have to think the case when the table is not empty; after checking the number of rows and if not 0, then continue with searching the smallest date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code would be something like this: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="Bold" style="font-size: 12px;"&gt;LET numRowsFact = NoOfRows('Fact');&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if&amp;nbsp; $(numRowsFact) = 0&amp;nbsp; then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let maxQVDDay = DATE((TODAY() + 1));&lt;/P&gt;&lt;P&gt;ELSE &lt;/P&gt;&lt;P&gt;let maxQVDDay = Peek('transaction_date', 0, 'Fact'); // CHANGE THE COLUMN NAME&lt;/P&gt;&lt;P&gt;if $(maxQVDDay) &amp;lt;= "0" then&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; let maxQVDDay = DATE((TODAY() + 1));&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end if&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Same thing has to be made to company_id otherwise script loading fails again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Mikko&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Jul 2011 05:38:26 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/An-empty-table-causes-loading-to-fail/m-p/286405#M710087</guid>
      <dc:creator />
      <dc:date>2011-07-22T05:38:26Z</dc:date>
    </item>
  </channel>
</rss>

