I am trying to export a DB from SQL Server to PostgreSQL. The simplest way seems using the export tool in SSMS as I have read here .
But I get the following error:
ERROR [IM014] [Microsoft][ODBC Driver Manager] The specified DSN contains an architecture mismatch
which means components mismatch between x64 and x86.
My SQL Server 2019 is 64 bit, PostgreSQL is version 15 64 bit, and the ODBC driver that comes with StackBuilder on installation is 64 bit too as seen here:
The destination configuration in SSMS is the following:
I have installed additional x64 ODBC driver from here but with the same result.
I can't understand what I'm doing wrong and why I have architecture mismatch, thank you.