I use FME 2014, and tried with quick translator to migrate popular AdventureWorks MS database to PostgreSQl server.
First I created PG database:
CREATE DATABASE adventure_works_2012 WITH OWNER = postgres ENCODING = 'UTF8' TABLESPACE = pg_default LC_COLLATE = 'C' LC_CTYPE = 'C' CONNECTION LIMIT = -1;
Then I added neccessary schemas, to allow FME Quick Translator do it's job.
However I get this error:
Bulk copy failed on table 'Production.Product' using delimiter ':'. Error was 'ERROR: invalid input syntax for type numeric: "2,24" CONTEXT: COPY Product, line 210, column weight: "2,24" '
and I don't know where could this come from. Looking inside database in SSMS I don't see such separot on the field, it's "2.24", and my regional setting also doesn't provide comma as decimal separator, so I don't know where does FME pulls this value and makes process fail.
Thanks