ODBC Connection not appearing SSIS(ODBC 连接没有出现 SSIS)
问题描述
我在服务器上正确配置了系统 DSN ODBC 驱动程序(连接已经过测试并且工作正常).
I have a System DSN ODBC driver configured correctly on a server (the connection has been tested and works fine).
我有一个 SSIS 包,当我尝试创建 ODBC 连接管理器时,在数据源的下拉列表中找不到我的 ODBC 连接.
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?
非常感谢
推荐答案
很可能您已经在 64 位 Windows 上配置了系统 DNS,但 SSIS 包在 32 位环境中运行.
Most likely you have configured the system DNS on a 64-bit Windows, but the SSIS package runs in a 32-bit environment.
系统 DSN 只会被可以使用的应用程序和工具看到使用它们——32 位 DSN 用于 32 位应用程序,64 位 DSN 用于64 位应用程序.来源
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
作为参考,可以在 64 位环境中的以下位置找到 ODBC 管理器窗口.
For reference, the ODBC Administrator Window can be found in the following locations on a 64-bit environment.
- C:WindowsSystem32odbcad32.exe(64 位 ODBC 管理员)
- C:WindowsSysWoW64odbcad32.exe(32 位 ODBC 管理员)
这篇关于ODBC 连接没有出现 SSIS的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:ODBC 连接没有出现 SSIS
基础教程推荐
- 无法解决整理冲突 2021-01-01
- 是否可以执行按位分组功能? 2021-01-01
- SSMS 中的权限问题:“对象 'extended_properties'、数据库 'mssqlsystem_resource'、... 错误 229)上的 SELECT 权限被拒绝" 2022-01-01
- 在 SQL 中连接多个表 2021-01-01
- SQL Server 实例在登录协商期间返回无效或不受支持的协议版本 2021-01-01
- 将 SQL Server DateTime 列迁移到 DateTimeOffset 2021-01-01
- SQL:使用来自具有相同列名的两个表中的数据... 2021-01-01
- 如何使用 mysql.connector 禁用查询缓存 2022-01-01
- 需要 MySQL 5.1 中的抽象触发器来更新审计日志 2021-01-01
- SQL 效率:WHERE IN 子查询 vs. JOIN 然后 GROUP 2021-01-01
