I have a Java-program that fetch rows from a SQL-Server DB and insert the same row into an Informix DB. The Informix DB only supports 8859-1 character set. Sometimes the users inserts a row in the SQL server DB by copy and paste from Word or Excel and that causes some characters to end up as Unicode characters (some of them 3-bytes in size).
How can i write a filter function that replaces the unicode characters with for example a '?' or something else ?
/Jimmy