I am working on migration of oracle-12c with utf16 to azure postgresql database.
While creating database in azure portal, I have to provide a collation name. Can someone please suggest with compatible (oracle utf16) collation name.
I am working on migration of oracle-12c with utf16 to azure postgresql database.
While creating database in azure portal, I have to provide a collation name. Can someone please suggest with compatible (oracle utf16) collation name.
UTF-8 and UTF-16 are encodings (“character sets” in Oracle lingo): they determine which number represents what character. PostgreSQL supports and recommends UTF-8, but does not support UTF-16, since it only supports encodings that extend ASCII.
Choose the UTF8
encoding and let Oracle do the conversion.
A collation determines the sorting order of character strings. You should choose a collation that is similar to the one you are using in Oracle, so that the result of an ORDER BY
will be similar.