SSIS包由于ADO NET源无法创建与Netsuite的连接管理器而失败。

huangapple go评论60阅读模式
英文:

SSIS Package Fails due to ADO NET source could not create connection manager with Netsuite

问题

我已经将一些SSIS项目部署到SSIS服务器目录中,在Visual Studio环境中每个人都能够正常运行,并且可以使用ADO NET提供程序(Netsuite AnalyticsConnect数据提供程序)连接和检索NETSUITE中的数据,但当我尝试在SSIS服务器中自动运行包时,作业不运行并出现以下错误:

SSIS包由于ADO NET源无法创建与Netsuite的连接管理器而失败。

是否有解决此问题的方法?当连接到本地SQL Server时,我没有遇到任何其他错误或相关问题。

英文:

I've deployed some SSIS projects to SSIS Server catalog, which everyone runs perfectly in the Visual Studio environment and can connect and retrieve data from NETSUITE using the ADO NET provider (Netsuite AnalyticsConnect Data Provider) but when I try to automate the package in the SSIS Server, the job doesn't run and give the error:

SSIS包由于ADO NET源无法创建与Netsuite的连接管理器而失败。

Is there a way to work around this? I am not having any other errors or something related when the connection is with the local SQL Server.

答案1

得分: 0

这是一个两步骤的过程:

  1. 在SSIS运行时服务器上安装ADO.NET提供程序(Netsuite AnalyticsConnect数据提供程序)。
  2. 在SSIS运行时服务器上将驱动程序 NetSuite.SuiteAnalyticsConnect.dll 文件注册到全局程序集缓存中。

参考链接:使用ADO.NET数据提供程序进行连接

英文:

It is a two step process:

  1. Install ADO NET provider (Netsuite AnalyticsConnect Data Provider)
    on the SSIS run-time server.
  2. Register the driver NetSuite.SuiteAnalyticsConnect.dll file in the
    Global Assembly Cache on the SSIS run-time server.

For the reference: Connecting with the ADO.NET Data Provider

huangapple
  • 本文由 发表于 2023年7月14日 03:49:32
  • 转载请务必保留本文链接:https://go.coder-hub.com/76682788.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定