<?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: Error -129 while loading qliksense script in App Development</title>
    <link>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49025#M3312</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To perform a JOIN you have to have one or more fields that have the same name across the two tables. If you don't you will get a cartesian join which means that you get all the combinations of all rows from each table. It is a multiplication. As far as I can tell from the log above you will get 3.855.140*31.081.765 which is 119.824.555.522.100 rows as a result. Clearly Qlik will run out of memory long before it can produce these rows...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that the fields that need to match have the same name in both tables - then the resulting number of rows will be within hopefully a manageable limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can just to test put&amp;nbsp; FIRST 10 in front of both LOAD statements - this gives you an idea:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIRST 10 LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CUSTOMER_NUMBER .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ......&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;FIRST 10 LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCOUNT_NUMBER, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to run and you will see that the resulting table will have 10*10 rows or 100 rows... which shows that you got a cartesian join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe the fields &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;%KeyBillingAccountMonthName and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;CellphoneQty should be matching fields but then they will have to have the same name. Furthermore they have to be calculated the same way too.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Apr 2018 21:03:36 GMT</pubDate>
    <dc:creator>petter</dc:creator>
    <dc:date>2018-04-03T21:03:36Z</dc:date>
    <item>
      <title>Error -129 while loading qliksense script</title>
      <link>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49024#M3311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm reloading a script and I got error -129 while reloading by the console&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1590 Data:&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1591 LOAD&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1592&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CUSTOMER_NUMBER AS [Client Amount],&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1593&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCOUNT_NUMBER AS [Billing Account Amount],&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1594&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Autonumber(ACCOUNT_NUMBER &amp;amp; '_' &amp;amp; MonthName(DateFrom)) AS %KeyBillingAccountMonthName,&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1595&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1596&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(AMOUNT_1) AS TOTAL_AMOUNT_1,&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1597&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(AMOUNT_2) AS TOTAL_AMOUNT_2,&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1598&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(TAXES_1) AS TOTAL_TAXES_1,&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1599&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Sum(TAXES_2) AS TOTAL_TAXES_2,&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1600&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthName(DateFrom) AS YearMonthDateFrom&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1601 Resident Facturacion_tmp&lt;/P&gt;&lt;P&gt;2018-04-02 17:12:10 1602 Group by CUSTOMER_NUMBER, ACCOUNT_NUMBER, MonthName(DateFrom)&lt;/P&gt;&lt;P&gt;2018-04-02 17:16:13&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 8 fields found: Cliente Facturación, Billing Account Amount, %KeyBillingAccountMonthName, TOTAL_AMOUNT_1, TOTAL_AMOUNT_2, TOTAL_TAXES_1, TOTAL_TAXES_2, YearMonthDateFrom, &lt;/P&gt;&lt;P&gt;2018-04-02 17:16:13&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3.855.140 lines fetched&lt;/P&gt;&lt;P&gt;2018-04-02 17:16:14 1604 Left Join&lt;/P&gt;&lt;P&gt;2018-04-02 17:16:14 1605 LOAD&lt;/P&gt;&lt;P&gt;2018-04-02 17:16:14 1606&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCOUNT_NUMBER,&lt;/P&gt;&lt;P&gt;2018-04-02 17:16:14 1607&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MonthStart(DateFrom)&amp;amp; '_' &amp;amp; ACCOUNT_NUMBER as KeyMapping,&lt;/P&gt;&lt;P&gt;2018-04-02 17:16:14 1608ApplyMap('CellphoneQtyByBillingAccount', AutoNumber(MonthStart(DateFrom)&amp;amp; '_' &amp;amp; ACCOUNT_NUMBER), 'NE') AS CellphoneQty&lt;/P&gt;&lt;P&gt;2018-04-02 17:16:14 1609 Resident Data_tmp&lt;/P&gt;&lt;P&gt;2018-04-02 17:18:57&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 3 fields found: ACCOUNT_NUMBER, KeyMapping, CellphoneQty, &lt;/P&gt;&lt;P&gt;2018-04-02 17:18:57&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 31.081.765 lines fetched&lt;/P&gt;&lt;P&gt;2018-04-02 17:18:57&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Joining/Keeping&lt;/P&gt;&lt;P&gt;2018-04-02 18:08:44&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; -129 = &lt;/P&gt;&lt;P&gt;2018-04-02 18:17:02&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Execution Failed&lt;/P&gt;&lt;P&gt;2018-04-02 18:34:54&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Execution finished.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I reload it in the app (not by console) it reloads well&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;¿Does anyone know what the -129 error mean?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 20:29:53 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49024#M3311</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-03T20:29:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error -129 while loading qliksense script</title>
      <link>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49025#M3312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To perform a JOIN you have to have one or more fields that have the same name across the two tables. If you don't you will get a cartesian join which means that you get all the combinations of all rows from each table. It is a multiplication. As far as I can tell from the log above you will get 3.855.140*31.081.765 which is 119.824.555.522.100 rows as a result. Clearly Qlik will run out of memory long before it can produce these rows...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make sure that the fields that need to match have the same name in both tables - then the resulting number of rows will be within hopefully a manageable limit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can just to test put&amp;nbsp; FIRST 10 in front of both LOAD statements - this gives you an idea:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIRST 10 LOAD &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; CUSTOMER_NUMBER .....&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ......&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;FIRST 10 LOAD&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ACCOUNT_NUMBER, &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; .....&lt;/P&gt;&lt;P&gt;;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to run and you will see that the resulting table will have 10*10 rows or 100 rows... which shows that you got a cartesian join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe the fields &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;%KeyBillingAccountMonthName and &lt;SPAN style="color: #3d3d3d; font-family: 'Helvetica Neue', Helvetica, Arial, 'Lucida Grande', sans-serif; font-size: 13px;"&gt;CellphoneQty should be matching fields but then they will have to have the same name. Furthermore they have to be calculated the same way too.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Apr 2018 21:03:36 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49025#M3312</guid>
      <dc:creator>petter</dc:creator>
      <dc:date>2018-04-03T21:03:36Z</dc:date>
    </item>
    <item>
      <title>Re: Error -129 while loading qliksense script</title>
      <link>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49026#M3313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi there,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We came across the same issue a while ago - and this had nothing to do with the structure of our join etc, as at the end of it error was returned in various parts of the code. Surprisingly - it never appeared when we ran a limited load.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We started from setting the error mode to 0 : set ErrorMode=0; and running the code this way.&lt;/P&gt;&lt;P&gt;This helped us for a while, but then it started coming back, error -129. I came across this: &lt;A href="https://community.qlik.com/message/1393819"&gt;Re: Hi. Has anyone come across a -129 error when loading data.&lt;/A&gt; and it helped us too. Error started coming back, nothing from Qlik which helped us resolve this problem. Meanwhile we upgraded to Sep 2017 and we were hoping this will help, unfortunately it didn't.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the end of the day the issue rectified itself - we recreated the app, renamed it and it's been ok ever since, error never appeared again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It took us a good couple of weeks to stabilize the situation, hopefully it will not be the case for you, good luck!&lt;/P&gt;&lt;P&gt;Michalina&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 10:34:59 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49026#M3313</guid>
      <dc:creator>kuczynska</dc:creator>
      <dc:date>2018-04-04T10:34:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error -129 while loading qliksense script</title>
      <link>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49027#M3314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I re checked and saw I missed renaming the key as I did on the other table of the join.&lt;/P&gt;&lt;P&gt;Thank you so much&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 16:58:06 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49027#M3314</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-04T16:58:06Z</dc:date>
    </item>
    <item>
      <title>Re: Error -129 while loading qliksense script</title>
      <link>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49028#M3315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The error here was that I missed renaming a key field&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Apr 2018 16:59:14 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/49028#M3315</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2018-04-04T16:59:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error -129 while loading qliksense script</title>
      <link>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/1658495#M49316</link>
      <description>&lt;P&gt;I got this error when my server ran out of memory (only 8 GB of RAM)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 17 Dec 2019 13:08:28 GMT</pubDate>
      <guid>https://community.qlik.com/t5/App-Development/Error-129-while-loading-qliksense-script/m-p/1658495#M49316</guid>
      <dc:creator>heij1421</dc:creator>
      <dc:date>2019-12-17T13:08:28Z</dc:date>
    </item>
  </channel>
</rss>

