I read that so many old postings about converting nchar, nvarchar to some postgres data type. SQL server uses UTF-16 and unicode for nchar and nvarchar and according to:
How can I store UTF-16 characters in a Postgres database?
the conversion is risky business. While creating a psql table the character set can be specified with 'UTF-8' so this could be an approximated solution. However, for latest versions of Postgres:
Is Postgres now supporting UTF-16 or something similar?
If this is happening, from which psql version?
Thanks in advance