there seems to be a 16 char limit on some of the output strings produced by the query designer... for instance... this is sql code i generated from the query designer
SELECT
COMPANYMASTER."COMPANYCODE" AS COMPANYMASTER_CO,
COMPANYMASTER."COMPANY_NAME" AS COMPANYMASTER_CO
FROM
"my-db"."COMPANYMASTER" COMPANYMASTER
so that code doesnt work because of the identical aliases... it should look like this
SELECT
COMPANYMASTER."COMPANYCODE" AS COMPANYMASTER_COMPANYCODE,
COMPANYMASTER."COMPANY_NAME" AS COMPANYMASTER_COMPANY_NAME
FROM
"my-db"."COMPANYMASTER" COMPANYMASTER
Recommended Comments