“所选数据源位于远程计算机上”创建 SSIS 作业时出错
我正在我的工作站上开发一个 SSIS 作业,其中数据流任务在我的本地工作站上打开一个逗号分隔的平面文件,并将数据导入到远程服务器上的 SQL Server 数据库中。
当我尝试在 SQL 目标对象中选择目标表时,出现以下错误:
所选数据源位于 远程计算机。批量插入 可以在本地执行操作 计算机。
如何解决该问题以便测试我的 SSIS 包。
I am in the process of developing an SSIS job on my workstation which a Data Flow Task open a comma delimited flat file on my local workstation and imports the data to a SQL server database on a remote server.
When I try to select the destination table in my SQL destination object, it gives me the following error:
The selected data source is on a
remote computer. The bulk insert
operation can be executed on the local
computer.
How do I resolve the issue so I can test my SSIS package.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
仅当包与指定数据库服务器在同一台计算机上运行时,SQL Server 目标才起作用。要使用远程连接,请更改为 OleDb 目标。
The SQL Server destination only works if the package is running on the same machine as the specified database server. To use remote connections, change to an OleDb destination instead.