Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
After installing Qlik Sense 2017 September I need to change my scripts.
It needs double quotes around de database name and te owner.
If I generate the script, Qlik suggests a script like:
Test:
LOAD cdadmin;
SQL SELECT cdadmin
FROM DATA.PUB."aa-100";
Exit script;
This gives the following error:
---
I works correct if I manualy change the script to
FROM "DATA"."PUB"."aa-100";
(I am connecting to a Progress OpenEdge database)