sql server - Import data from 64-bit ODBC provider -
i'm trying migrate postgis database sql-server 2008 spatial database.
postgresql installs 64 bit odbc driver.
if try import data postgresql odbc provider ssms error:
error [im014] [microsoft][odbc driver manager] specified dsn contains architecture mismatch between driver , application
which assume means can't connect 64-bit driver, ssms 32-bit.
any advice how solve this?
the odbc driver architecture must match architecture of application, odbc driver library that's loaded in-process.
so if app 32-bit, odbc driver must 32-bit well, irrespective of whether it's 32-bit or 64-bit postgresql server.
Comments
Post a Comment