I get this error when I CAST an Integer/Decimal/Float field to VARCHAR and concatenate to VARCHAR field in a SELECT clause. e.g.
SELECT CAST(COALESCE(A,"") AS VARCHAR(11)) || '|' || TRIM(B) FROM <DB>.<TB>
gives 6706 error (Untranslatable character)
However,
SELECT CAST(A AS VARCHAR(11)), TRIM(B) FROM <DB>,<TB>
works fine.
So, I am not sure if it is a Unicode/Latin issue.
↧