Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
ZimaBlue
Creator
Creator

Qlik Sense, I get load error -129 when reloading app

Hello!

So, I have a very simple script and join, which is even simpler. I have several fields with the same name and 2 that I want to join. However, I get this error every time: error 129.

Any tips on how to make qlik sense work? Did I make a mistake somewhere?

my script is:

keywords_sub:
LOAD
reg_cohort as k_reg_cohort,
partner_name as k_partner_name,
ad_id as k_ad_id,

keyword as k_keyword,
request_url as k_request_url
FROM [qvd name]
(qvd);

 

main_data:
LOAD
"date",
monthname("date") as reg_cohort,
partner_name,
campaign,
ad_group_id,
ad_id,
ad_group_name,
ad_name,
date_rank,
user_id

FROM [qvd2 name]
(qvd);


//--------------
left join (main_data)
LOAD
k_keyword,
k_request_url,

k_reg_cohort as reg_cohort,
k_partner_name as partner_name,
k_ad_id as ad_id
resident keywords_sub;

drop tables keywords_sub;

Labels (1)
1 Solution

Accepted Solutions
vidyutverma
Partner - Contributor III
Partner - Contributor III

Error 129 may be due to the join taking large amount of RAM and failing thereafter. (https://community.qlik.com/t5/Knowledge/Error-129-or-128-when-reloading-app/ta-p/1713809)
Try using a small dataset and checking if your joins are behaving as expected.

View solution in original post

2 Replies
vidyutverma
Partner - Contributor III
Partner - Contributor III

Error 129 may be due to the join taking large amount of RAM and failing thereafter. (https://community.qlik.com/t5/Knowledge/Error-129-or-128-when-reloading-app/ta-p/1713809)
Try using a small dataset and checking if your joins are behaving as expected.
ZimaBlue
Creator
Creator
Author

thank you!