从脚本组件 SSIS 2008 运行 .NET 4 代码
我需要从 SSIS 脚本组件运行自定义代码。据我所知它支持.NET 2-3.5。 您能告诉我这样做的解决方法吗?
谢谢。
I need to run custom code from SSIS script component. As I know it supports .NET 2-3.5.
Can you tell me please a workaround of doing this?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个 Web 服务/WCF 服务来调用 .NET 4.0 自定义代码,并通过该服务从
脚本组件
调用自定义代码。这是链接,显示
如何配置 SSIS 包以使用 WCF 访问 Web 服务
。它与您正在寻找的不完全相同,但我希望这能给您一个想法。Create a web service/WCF service to call the .NET 4.0 custom code and invoke the custom code from the
Script Component
through the service.Here is a link that shows
How to Configure an SSIS Package to Access a Web Service using WCF
. It is not exactly the same as what you are looking for but I hope that should give you an idea.将其编译为 .exe 并在“执行进程任务”中运行
Compile it as an .exe and run it in an 'Execute Process Task'