SQL Server To PostgreSQL Migration Reference
SQL Server To PostgreSQL Migration Reference
com/sql-server-to-postgresql
Data Types
Converting data types:
8 DATETIMEOFFSET(p) Date and time with fraction and time zone TIMESTAMP(p) WITH TIME
ZONE
29 UNIQUEIDENTIFIER CHAR(16)
16-byte GUID (UUID) data
33 VARCHAR(max) TEXT
Variable-length character data, ⇐ 2G
2 ISNULL(exp, replacement) Replace NULL with the specified value COALESCE(exp, replacement)