<?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: Problem with load script in QlikView</title>
    <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887638#M469439</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It' difficult to say what could be wrong - maybe there is inspite of the linktable no or not the right association between the tables to show or calculate the correct results. You could build a small tablebox with only a few fields around Client_cost and Product_cost with a date-, categorie-field or something similar and if this didn't returned "normal" data-rows something with the association don't worked properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe your approach to put everything in the linktable is not completely suitable (and often not the easiest way) and a mix from different approaches from join/map tableparts together, adds other tables per concatenate (unlike sql asymetric tables are not a problem - it worked great) and use linktables (by larger datasets it's useful to use an autonumber(ForTheCompositeKey) - the performance will be better) for the rest which isn't covered by the other approaches.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 06 Jul 2015 15:41:14 GMT</pubDate>
    <dc:creator>marcus_sommer</dc:creator>
    <dc:date>2015-07-06T15:41:14Z</dc:date>
    <item>
      <title>Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887636#M469437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have such code in script as is below (I've changed names and remove some dimensions). When I'm loading data as it is in the script - everything is fine. But this script it is not efficient on the large data (there are many syncs key so loading is very slow), so I wanted to add some keys or use "Concatenate". If I add keys then some values doesn't show on some dimensions:&lt;/P&gt;&lt;P&gt;my keys according to used dimensions in table:&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CAST(Date AS varchar)+'|'+Product_id+'|'+Client_id AS [%KP_key]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CAST(Date AS varchar)+'||'+Client_id AS [%KP_key]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CAST(Date AS varchar)+'|'+Product_id+'|' AS [%KP_key]&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;and then I'm creating link table and I'm removing &lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;EM&gt;Client_id&lt;/EM&gt; and &lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;EM&gt;Product_id &lt;/EM&gt;&lt;/SPAN&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;fields.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;When I add this and I want see what is &lt;EM&gt;Sum_c&lt;/EM&gt; on Products, there are just zeros and after products there is a row with "-" id and whole sum. How it should look like -&amp;gt; &lt;EM&gt;Sum_c&lt;/EM&gt; value should be repeated on every product.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any ideas how can I do that or how to optimize my data model?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14361675408054359" jivemacro_uid="_14361675408054359"&gt;
&lt;P&gt;SumsC:&lt;/P&gt;
&lt;P&gt;SELECT&lt;/P&gt;
&lt;P&gt;&amp;nbsp; TIME Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID Client_id,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Value Sum_c&lt;/P&gt;
&lt;P&gt;FROM Sums&lt;/P&gt;
&lt;P&gt;where ID in (select ID from Clients);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;SumsP:&lt;/P&gt;
&lt;P&gt;SELECT&lt;/P&gt;
&lt;P&gt;&amp;nbsp; TIME Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID Product_id,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Value Sum_p&lt;/P&gt;
&lt;P&gt;FROM Sums&lt;/P&gt;
&lt;P&gt;where ID in (select ID from Products);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Clients_data:&lt;/P&gt;
&lt;P&gt;SELECT&lt;/P&gt;
&lt;P&gt;&amp;nbsp; TIME AS Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; sth1 Sth1_id, //some dimensions&lt;/P&gt;
&lt;P&gt;&amp;nbsp; sth2 Sth2_id,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; sth3 Sth3_id, //there are a few more - 8&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Value Client_cost,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID Client_id&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;Clients_data;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Products_data:&lt;/P&gt;
&lt;P&gt;SELECT&lt;/P&gt;
&lt;P&gt;&amp;nbsp; TIME AS Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; sth1 Sth1_id, //there are also 8 more dimensions as in Clients_data&lt;/P&gt;
&lt;P&gt;&amp;nbsp; sth2 Sth2_id,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; sth3 Sth3_id,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Value Product_cost,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID Product_id&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;Products_data;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Incomes:&lt;/P&gt;
&lt;P&gt;SELECT&lt;/P&gt;
&lt;P&gt;&amp;nbsp; TIME AS Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID Client_id,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID Product_id,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Value Income,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Amount Amount,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Client_counter,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Product_counter&lt;/P&gt;
&lt;P&gt;FROM&lt;/P&gt;
&lt;P&gt;Incomes;&lt;/P&gt;


&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;======&lt;/P&gt;&lt;P&gt;Updates:&lt;BR /&gt;I have some progress. I found similar problem here: &lt;A href="http://stackoverflow.com/questions/18337272/handling-multiple-fact-tables-in-qlikview" title="http://stackoverflow.com/questions/18337272/handling-multiple-fact-tables-in-qlikview"&gt;database - Handling multiple fact tables in Qlikview - Stack Overflow&lt;/A&gt;. So:&lt;BR /&gt;a) I did temp tables with whole data from database.&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14361820474305107" jivemacro_uid="_14361820474305107"&gt;
&lt;P&gt;Temp_SumsC:&lt;/P&gt;
&lt;P&gt;SELECT&lt;/P&gt;
&lt;P&gt;&amp;nbsp; TIME Date,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; ID Client_id,&lt;/P&gt;
&lt;P&gt;&amp;nbsp; Value Sum_c&lt;/P&gt;
&lt;P&gt;FROM Sums&lt;/P&gt;
&lt;P&gt;where ID in (select ID from Clients);&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;b) I loaded temp tables to right tables using key&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_1436182083900932" jivemacro_uid="_1436182083900932"&gt;
&lt;P&gt;SumsC:&lt;/P&gt;
&lt;P&gt;Load Value,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date &amp;amp; '|' &amp;amp; Client_id AS %C_key&lt;/P&gt;
&lt;P&gt;Resident Temp_SumsC&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;c) I added data from all tables to &lt;EM&gt;TempLinkTable&lt;/EM&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14361822280551941 jive_text_macro" jivemacro_uid="_14361822280551941"&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;TempLinkTable:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;LOAD Distinct&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Client_id &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Resident Temp_SumsC&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Concatenate(TempLinkTable)&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;d) I created LinkTable with all keys and dimension fields&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14361823350432842" jivemacro_uid="_14361823350432842"&gt;
&lt;P&gt;LinkTable:&lt;/P&gt;
&lt;P&gt;LOAD Distinct&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Client_id , Product_id,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth1_id, &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth2_id, &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth3_id,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Date &amp;amp; '|' &amp;amp; Client_id &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;%C_key, &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Date &amp;amp; '|' &amp;amp; Product_id &lt;/SPAN&gt;%P_key,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Date &amp;amp; '|' &amp;amp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Client_id &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;amp; '|' &amp;amp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth1_id &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;amp; '|' &amp;amp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth2_id &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;amp; '|' &amp;amp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth3_id&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/SPAN&gt;&lt;/SPAN&gt;%CA_key, &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Date &amp;amp; '|' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Product_id &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;amp; '|' &amp;amp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth1_id &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;amp; '|' &amp;amp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth2_id &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;amp; '|' &amp;amp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Sth3_id&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; %PA_key, &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Date &amp;amp; '|' &amp;amp; &lt;/SPAN&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Client_id &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&amp;amp; '|' &amp;amp; Product_id &lt;/SPAN&gt;&lt;/SPAN&gt;%CP_key&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-size: 12px; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;Resident TempLinkTable&lt;/SPAN&gt;&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;e) I removed all unnecessary tables&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14361826261458858 jive_text_macro" jivemacro_uid="_14361826261458858"&gt;
&lt;P&gt;DROP Table Temp_SumsC;&lt;/P&gt;
&lt;P&gt;...&lt;/P&gt;

&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After script reloaded, the &lt;EM&gt;Sum_c&lt;/EM&gt; and &lt;EM&gt;Sum_p&lt;/EM&gt; started work, but &lt;EM&gt;Client_cost&lt;/EM&gt; and &lt;EM&gt;Product_cost&lt;/EM&gt; still doesn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2015 07:48:08 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887636#M469437</guid>
      <dc:creator />
      <dc:date>2015-07-06T07:48:08Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887637#M469438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to avoid any synthetic keys (unless you knows excactly what you are doing) and for this you might need to build composite keys and/or create a link-table and/or put tables per concatenating/joining/mapping together. Here you will find a collection of links how do you could change your script: &lt;A href="https://community.qlik.com/docs/DOC-8844"&gt;Get started with developing qlik datamodels&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2015 11:37:43 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887637#M469438</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-06T11:37:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887638#M469439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It' difficult to say what could be wrong - maybe there is inspite of the linktable no or not the right association between the tables to show or calculate the correct results. You could build a small tablebox with only a few fields around Client_cost and Product_cost with a date-, categorie-field or something similar and if this didn't returned "normal" data-rows something with the association don't worked properly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe your approach to put everything in the linktable is not completely suitable (and often not the easiest way) and a mix from different approaches from join/map tableparts together, adds other tables per concatenate (unlike sql asymetric tables are not a problem - it worked great) and use linktables (by larger datasets it's useful to use an autonumber(ForTheCompositeKey) - the performance will be better) for the rest which isn't covered by the other approaches.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jul 2015 15:41:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887638#M469439</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-06T15:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887639#M469440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For me it looked if there aren't any changes within this tread - updates from postings are (mostly) not helpful, please use the answer-button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jul 2015 15:23:18 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887639#M469440</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-07T15:23:18Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887640#M469441</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for answer! &lt;BR /&gt;I'll look at your link - I see that there are a lots of interesting things, but I think I tried everything from there and it didn't solve my problem to the end.&lt;/P&gt;&lt;P&gt;What I found out so far - when I remove all other &lt;EM&gt;sthX_id&lt;/EM&gt; fields it works... Maybe because &lt;SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 13px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;EM&gt;Client_cost&lt;/EM&gt; and &lt;EM&gt;Product_cost&lt;/EM&gt; are connected with these dimensions. So now I am trying to separate these fileds between &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;&lt;EM&gt;Clients_data&lt;/EM&gt; and &lt;EM&gt;Product_data &lt;/EM&gt;&lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;- they should be connected with dimension definition, but not between fact tables. &lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;I know that for this I could use &lt;EM&gt;QUALIFY&lt;/EM&gt;, but I'm not quite sure how to use it. Of course when dimension definition will have only id and name, then I'll use mapping to get dimension name.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;Another overcome, which I found is to use QUALIFY and when I have two the same dimensions I use trigger to change this second when first is changed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #3d3d3d; font-size: 12px; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif;"&gt;PS. I've edited my main post, because I couldn't add any reply for your answers.&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 06:51:56 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887640#M469441</guid>
      <dc:creator />
      <dc:date>2015-07-08T06:51:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887641#M469442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think that your datamodel isn't suitable yet - that there are still missing associations and/or a too complex structure and qualifying will be probably not helpful rather the opposite. Qualifying is only useful to separate data-areas from each other which is most not the aim within qlikview else the opposite again the association from (all) data is the aim. People with a sql-background where qualifying and normalization is quite common think often too complicated by building a datamodel in qlikview, many things (not all) a quite easy &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The easiest data-model is the star-sheme with one fact-table (if you have several fact-tables they will be joined/mapped/concatenated) and various dimension-tables which are direct linked to the fact-table (chained dimension-tables will be de-normalized by joining/mapping/concatenating the tables together). Thes description is a bit black and white colored and the reality is more grey but it should give you a direction and most often other datamodels needs more efforts to build them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest that you start with a simplified approach by not loading all tables and all fields and checked then within tableviewer and with one or two simple table-charts if the loaded data are like you expect them and then you could increase the complexity again step by step.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 08:53:42 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887641#M469442</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-08T08:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887642#M469443</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The point is that once there was one big table with all measures and dimensions, but it was splitted to increase performance of reports using SSAS (SQL Server Analysis Services), because many informations were duplicated &lt;SPAN style="font-size: 13.3333330154419px;"&gt;in this one table&lt;/SPAN&gt;.&lt;/P&gt;&lt;P&gt;Now I think that I should use this splitted table in QV - but maybe here I'm wrong? Does QlikView really &lt;SPAN style="font-size: 13.3333330154419px;"&gt;like &lt;/SPAN&gt;big tables with milions of records? I'm not quite sure what I should thinking about it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You said about &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;data-model which is the star-scheme. I have now such scheme, but the main table is not fact-table but link-table with connections products-clients-data. And something like this is not too good, right?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 10:05:13 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887642#M469443</guid>
      <dc:creator />
      <dc:date>2015-07-08T10:05:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887643#M469444</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Quite often worked such big table very well in qlikview. It couldn't be compared with big tables in normal sql-databases then qlikview stored only the distinct values of a field and used then bit-stuffed pointer, see: &lt;A href="https://community.qlik.com/qlik-blogpost/2848"&gt;Symbol Tables and Bit-Stuffed Pointers&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nevertheless it will depend on various factors especially in which area will you have more likely a bottleneck which model-approach will fit best - see here what is meant: &lt;A href="https://community.qlik.com/thread/165194"&gt;TableView Model - Star Or Snowflake - Does It Matter?&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore I suggest you start with a simple model which worked and only there are bigger performance problems or you have enough time you begin to optimize this and that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jul 2015 10:34:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887643#M469444</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-08T10:34:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887644#M469445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I followed your advice and I started from loading two problematic tables. Then I saw that already at this point I had additional row with whole sum (what I didn't want). When I added tables Sum_c and Sum_p (there were &lt;EM&gt;$syn&lt;/EM&gt; keys) - everything was fine again...&lt;/P&gt;&lt;P&gt;I saw that table with all &lt;EM&gt;$syn&lt;/EM&gt; keys was like&lt;EM&gt; full outer join&lt;/EM&gt; of tables, whereas I just could do &lt;EM&gt;Concatenate&lt;/EM&gt; or plain joins.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to do &lt;SPAN style="font-size: 13.3333330154419px;"&gt;&lt;EM&gt;full outer join&lt;/EM&gt; of my tables (&lt;EM&gt;clients_data&lt;/EM&gt; and &lt;EM&gt;products_data&lt;/EM&gt;)?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333330154419px;"&gt;*of course without numeric values, only dimensions to do Link Table&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jul 2015 12:19:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887644#M469445</guid>
      <dc:creator />
      <dc:date>2015-07-09T12:19:14Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887645#M469446</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's quite hard stuff here &lt;A href="https://community.qlik.com/message/10279"&gt;Should We Stop Worrying and Love the Synthetic Key?&lt;/A&gt; and I agree synthetic keys aren't a general problem. From them I recommend the comment from &lt;A href="https://community.qlik.com/qlik-users/3931"&gt;mov&lt;/A&gt;‌:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;TABLE border="1"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;
&lt;P&gt;My two cents (no time for much more...)&lt;/P&gt;
&lt;P&gt;If you are a beginner, the recomandation stays true - avoid synthetic keys. As a rule it's a result of poor design.&lt;BR /&gt;If you're an expert, it's a different story. You know the risks and understand what you're doing.&lt;BR /&gt;(Compare to car driving, you may by chance run on two left wheels, but better leave it for the experts :-))&lt;/P&gt;
&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jul 2015 20:55:24 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887645#M469446</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-07-09T20:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887646#M469447</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I solved this problem in the following way: I've changed subsection &lt;SPAN style="font-size: 13.3333330154419px;"&gt;c). Instead of this:&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14400498976803117" jivemacro_uid="_14400498976803117"&gt;
&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14400499551754148" jivemacro_uid="_14400499551754148"&gt;
&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit; font-weight: inherit;"&gt;TempLinkTable: &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;&lt;STRONG&gt;LOAD Distinct &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; font-style: inherit; background-color: inherit;"&gt;&lt;STRONG&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/STRONG&gt;&lt;/SPAN&gt;&lt;SPAN style="color: black; font-size: 9pt !important; background-color: inherit;"&gt;Date, Client_id &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; background-color: inherit;"&gt;Resident Temp_SumsC &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: black; font-size: 9pt !important; background-color: inherit;"&gt;Concatenate(TempLinkTable) &lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; color: black; font-size: 9pt !important; background-color: inherit;"&gt;...&lt;/SPAN&gt;&lt;/P&gt;


&lt;/PRE&gt;


&lt;/PRE&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;I used this:&lt;/P&gt;&lt;PRE __default_attr="sql" __jive_macro_name="code" class="jive_macro_code jive_text_macro _jivemacro_uid_14400499273288413" jivemacro_uid="_14400499273288413"&gt;
&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code _jivemacro_uid_14400498976753748 jive_text_macro" jivemacro_uid="_14400498976753748" modifiedtitle="true"&gt;
&lt;P&gt;TempLinkTableP:&lt;/P&gt;
&lt;P&gt;LOAD Distinct&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, Client_id, Product_id&lt;/P&gt;
&lt;P&gt;Resident&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Incomes&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;outer join (&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;TempLinkTableP)&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;LOAD Distinct&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, Product_id, &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth1_id, &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth2_id, &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth3_id&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;Resident&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Products_data;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;NoConcatenate&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;TempLinkTableC:&lt;/P&gt;
&lt;P&gt;LOAD Distinct&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, Client_id, Product_id&lt;/P&gt;
&lt;P&gt;Resident&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000000;"&gt;Incomes&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000;"&gt;outer join (TempLinkTableC)&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;LOAD Distinct&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, &lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;Client_id&lt;/SPAN&gt;, &lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;Sth1_id, &lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;Sth2_id, &lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;Sth3_id&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;Resident&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;Clients_data;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;NoConcatenate&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;TempLinkTable:&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; background-color: #f8f8f8;"&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;LOAD Distinct&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, Product_id, Client_id, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth1_id, &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth2_id, &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth3_id&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;Resident TempLinkTableP;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;Concatenate&lt;BR /&gt;&lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&lt;SPAN style="color: rgba(0, 0, 0, 0); font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px;"&gt;LOAD Distinct&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Date, Product_id, Client_id, &lt;/SPAN&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth1_id, &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth2_id, &lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Sth3_id&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;Resident TempLinkTableC;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;Drop Table TempLinkTableC;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;Drop Table TempLinkTableP;&lt;/SPAN&gt;&lt;/P&gt;


&lt;/PRE&gt;


&lt;/PRE&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-size: 12px; background-color: #f8f8f8; font-family: Consolas, 'Courier New', Courier, mono, serif;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;And it works - the values are correct. Unfortunately, instead of fast loading data, the app still works slow, but this problem is for another question.&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;Thanks for all help Marcus. &lt;IMG src="https://community.qlik.com/legacyfs/online/emoticons/wink.png" /&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 13.3333330154419px;"&gt;&lt;SPAN style="color: #000000; font-family: Consolas, 'Courier New', Courier, mono, serif; font-size: 12px; background-color: #f8f8f8;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 05:54:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887646#M469447</guid>
      <dc:creator />
      <dc:date>2015-08-20T05:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with load script</title>
      <link>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887647#M469448</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Slow data-loads could be often improved with incremental load methods and using of optimized loadings - within this post &lt;A href="https://community.qlik.com/docs/DOC-9038"&gt;Advanced topics for creating a qlik datamodel&lt;/A&gt; there are several links to those topics.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Marcus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Aug 2015 06:48:20 GMT</pubDate>
      <guid>https://community.qlik.com/t5/QlikView/Problem-with-load-script/m-p/887647#M469448</guid>
      <dc:creator>marcus_sommer</dc:creator>
      <dc:date>2015-08-20T06:48:20Z</dc:date>
    </item>
  </channel>
</rss>

