使用 EzApi 创建 SSIS 包
我正在使用 EzApi 创建 SSIS 包。但是,我无法创建具有多个源和单个目标的包。例如,两个 OLEDB 源和一个 OLEDB 目标。 我到底想知道的是如何使用 C# 代码添加合并转换。 请帮忙
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我正在使用 EzApi 创建 SSIS 包。但是,我无法创建具有多个源和单个目标的包。例如,两个 OLEDB 源和一个 OLEDB 目标。 我到底想知道的是如何使用 C# 代码添加合并转换。 请帮忙
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
在EzApi中有一个名为
EzMerge
的组件如果您需要创建自定义数据流 - 您可以使用名为
EzDataFlowPackage
的基类:我刚刚输入了此代码 - 因此它可能包含错误。至此,您的包装布局就准备好了。您可以简单地设置组件属性。
In EzApi there is a component called
EzMerge
If you need to create a custom dataflow - you can use the base class called
EzDataFlowPackage
:I just typed this code in - so it may contain errors. By after all this your package layout is ready. And you can simply set component properties.
我没有使用过 EzApi,但是在 BIDS (Visual Studio) 中,您需要有两个数据源、一个数据目标和一个“合并”组件来连接它:
如下所示:
编辑
关于装箱是程序性的。查看以下链接:
http://thinkerkk.blogspot。 com/2007/08/programmatically-creating-dataflow-with.html
查找注释后的代码
//create the Merge Transformation
以下链接对于创建 SSIS 包也可能有用以编程方式:
http://msdn.microsoft.com/en-us/library/ ms135946.aspx
http://blogs.msdn.com/b/mattm/archive/2008/12/30/samples-for-creating-ssis-packages-programmatically.aspx
I've not used EzApi, however in BIDS (Visual Studio) you need to have two data sources, one data destination, and a 'merge' component to connect it:
Like so:
EDIT
With regard to crating is progamatically. Check out the following link:
http://thinkerkk.blogspot.com/2007/08/programmatically-creating-dataflow-with.html
Look for the code after the comment
//create the Merge Transformation
The following links may also be useful for creating SSIS packages programatically:
http://msdn.microsoft.com/en-us/library/ms135946.aspx
http://blogs.msdn.com/b/mattm/archive/2008/12/30/samples-for-creating-ssis-packages-programmatically.aspx
使用适用于 SQL Server 的 EzApi,可以使用 EzMerge,它与为 DataTools 设计时的 Merge 相同。查找不同版本的 SQL Server 的 SQL Server EzApi:
Using EzApi for SQL Server there is EzMerge which is the same control like Merge while designing for DataTools. Find SQL Server EzApi for different versions of SQL Servers: