ODBC Connection not appearing SSIS

匆匆过客 提交于 2019-12-08 03:16:53

问题


I have a System DSN ODBC driver configured correctly on a server (the connection has been tested and works fine).

I've got an SSIS package, and when I try to create an ODBC connection manager, I can't find my ODBC connection in the drop down of data sources.

I've tried refreshing the list, closing and re-opening the solution, even re-creating the solution.

Has anyone experienced this before and if so how did you resolve it?

Many thanks


回答1:


Most likely you have configured the system DNS on a 64-bit Windows, but the SSIS package runs in a 32-bit environment.

System DSNs will only be seen by the applications and tools which can use them -- 32-bit DSNs for 32-bit applications, and 64-bit DSNs for 64-bit applications. Source

For reference, the ODBC Administrator Window can be found in the following locations on a 64-bit environment.

  1. C:\Windows\System32\odbcad32.exe (64-bit ODBC Administrator)
  2. C:\Windows\SysWoW64\odbcad32.exe (32-bit ODBC Administrator)


来源:https://stackoverflow.com/questions/51769240/odbc-connection-not-appearing-ssis

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!