Hi Giachino,
Yes, I've configured to MySQLDialect. No error on logs prompt.
I able to do for the same query but without changing the column name. The error prompt if you want to change the column name. Please refer to below:
-Success : Query without changing the name column:
Select distinct o.BIOBJ_ID, o.NAME, o.DESCR, o.BIOBJ_TYPE_CD, o.LABEL
From SBI_OBJECTS o, SBI_AUDIT a
where o.NAME=a.DOC_NAME
order by o.NAME
-Error : Query with changing the column name (AS);
Select distinct o.BIOBJ_ID AS ID, o.NAME AS DOC_NAME, o.DESCR, o.BIOBJ_TYPE_CD AS DOC_TYPE, o.LABEL
From SBI_OBJECTS o, SBI_AUDIT a
where o.NAME=a.DOC_NAME
order by o.NAME.
Thank you
Herman