Hi
Thanks for the example and welcome to the wonderful world of character encodings ;-) The issue here is that the file is saved as UTF-8 (
https://en.wikipedia.org/wiki/Unicode), but the contents are to be written to a table configured for ISO-Latin (
https://en.wikipedia.org/wiki/ISO/IEC_8859) (which is a much smaller character set), and some of your special characters (such as ? and ?) aren't supported by the subset
ISO-Latin1, which according to the error message, is what the target table is configured for.
You could try to convert the attributes to
ISO-Latin2 (where these characters
are supported) and hope that the database can handle them in some way, but it is a bit of a stretch:

If this doesn't work, consider removing the accents entirely (see
https://knowledge.safe.com/AnswersQuestionDetail?id=906a0000000ckT7AAI) or use a StringPairReplacer for a more targeted approach, e.g. replacing
? with
ch, etc
David