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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Help script syntax

Hello,

I have a script for data loading from a qvd file (atteched), it gives an "scorie after instruction" error while running, could anyone help, please ? Thanks

Roles:

add

DATEFFET

,

concat

(CDEROL,'') as CDEROL GROUP BY NUMPERS,DATEFFET

RolesTmp.qvd



(qvd);

LOAD NUMPERS,

2 Replies
Not applicable
Author

Sorry, problme pasting the script, here is the correct script :

Roles:

LOAD NUMPERS,DATEFFET,concat(CDEROL,'') as CDEROL GROUP BY NUMPERS,DATEFFET

FROM RolesTmp.qvd (qvd);

Not applicable
Author

Hi,

so far I see the statement normaly should be written in this way:

Roles:

LOAD NUMPERS,DATEFFET,concat(CDEROL,'') as CDEROL

FROM RolesTmp.qvd (qvd)

GROUP BY NUMPERS,DATEFFET;

but:

Not sure at the moment if it is possible to have a "Group By" statement with a qvd file.

Tip:

Do the concat by building the qvd file.

Rainer