Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
master_student
Creator III
Creator III

file extdata cpp line 2903

Hello Guys,

I got this error ;

Capture.PNG

Here's my script :

LOAD *

;

select m.msisdn_number, o.imei_number ,o.valid_from

from p_eriber_device o

left join p_ebscriber_mn m on mcriber_id = o.subr_id;

exit script;

Any idea?

Thanks

1 Reply
hector_munoz
Specialist
Specialist

Hi WIEM,

I suposse you are reading tables p_eriber_device and p_ebscriber_mn from database, so there should be a previous connect sentence and maybe the main sentence should contain SQL sentence as:

LOAD *

;

SQL select m.msisdn_number, o.imei_number ,o.valid_from

from p_eriber_device o

left join p_ebscriber_mn m on mcriber_id = o.subr_id;

Regards,

H