SSIS 是否能够从另一台 Windows Server 查询平面文件?
我是 SQL Server Integration Server (SSIS) 的新用户。
SSIS 是否能够从位于另一台 Windows Server 中的文本文件查询数据?
我的意思是,当SSIS安装在Windows Server A上时,SSIS是否能够从例如Windows Server B(在同一域下)中包含文本文件的一个文件夹中查询数据?
我仅使用 SAP BO Data Integrator ETL 工具,它无法从另一台服务器查询平面文件:在执行期间,所有文件必须位于执行作业的作业服务器计算机上。
I'm pretty new SQL Server Integration Server (SSIS) user.
Is SSIS able to query data from text files located in another Windows Server?
I mean that when SSIS is installed on Windows Server A, is SSIS able to query data from e.g. one folder containing text files in Windows Server B (under same domain)?
I have used only SAP BO Data Integrator ETL tool and it cannot query flat files from another Server: during execution, all files must be located on the Job Server machine that executes the job.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,您可以使用 SSIS 访问另一台服务器上的文本文件,方法是使用文件共享并使用共享名称(即
\\ServerB\MySSISFiles\
)访问文件。您需要确保运行 SSIS 的帐户有权访问文件共享。
Yes, you can access text files on another server using SSIS by using a fileshare and accessing the files using the share name i.e.
\\ServerB\MySSISFiles\
.You need to make sure that the account the SSIS is running under has access to the file share.