Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
cheburashka
Creator III
Creator III

Load Inline does not work.

Hello,

I have a very basic script but it keeps on crashing (QlikView hangs) on the load inline.

No idea why. I assume some of my technical settings are wrong?

The script looks like:

SET ThousandSep='.';

SET DecimalSep=',';

SET MoneyThousandSep='.';

SET MoneyDecimalSep=',';

SET MoneyFormat='€#.##0,00;-€#.##0,00';

SET TimeFormat='hh:mm:ss';

SET DateFormat='DD/MM/YYYY';

SET TimestampFormat='DD/MM/YYYY hh:mm:ss[.fff]';

SET MonthNames='Jan;Feb;Mar;Apr;May;Jun;Jul;Aug;Sep;Oct;Nov;Dec';

SET DayNames='Mon;Tue;Wed;Thu;Fri;Sat;Sun';

SET LongMonthNames='January;February;March;April;May;June;July;August;September;October;November;December';

SET LongDayNames='Monday;Tuesday;Wednesday;Thursday;Friday;Saturday;Sunday';

SET FirstWeekDay=0;

SET BrokenWeeks=0;

SET ReferenceDay=0;

SET FirstMonthOfYear=0;

SET CollationLocale='';

Test:

LOAD * INLINE [

    F1, F2

    df, sdf

    sdf, asdf

];

Exit script

,Thanks for your advice

20 Replies
Morteza561
Contributor II
Contributor II

Thank you very much! This was exactly my problem!