Hi all,
I'm trying to migrate an Informix database to DB2 and there's some tables that contain varchar fields with Greek characters.
When I want do fetch such fields in AS/400 I use the following SELECT statement:
SELECT CAST (CAST (field1 AS VARCHAR(100) FOR BIT DATA) AS CHAR(100) CCSID 875) AS field1 FROM table1
I'm not keen with Informix, even the following simple statement I've run just to see how CASTing works in Informix, fails (and I don't know why):
SELECT CAST(field1 AS VARCHAR) from table1
Is any equivalent in Informix that does the same? Or is any other way (with example plz

) to correctly convert greek characters?
Thanks & Regards,
Pascal