FAQ

CLOB-Values are not displayed correctly for MS-SQL-Server

We do not allow querying CLOB-values directly due to performance issues.

One workaround is using SUBSTRING. For example, change SQL

From

select description FROM "fieldconfiguration"

To

SELECT SUBSTRING(description,1,1024) FROM "fieldconfiguration"