将连接字符串从 C# 传递到 SSIS 包
我正在从我的 C# 代码中执行 SSIS 包。我必须将源文件 (.csv) 和目标连接(SQL 数据库)从 C# 传递到 SSIS 作为输入参数。
在 SSIS 中,我有一个简单的数据流任务,它有一个连接到 OLEDB 目标文件的平面文件源。
我应该如何将动态连接字符串传递到我的 SSIS 包?
From my C# code, I am executing the SSIS package. I have to pass a source file (.csv) and destination connection (SQL database) from C# to SSIS as input parameters.
In SSIS, I have a simple Data Flow Task which has a Flat File Source connected to OLEDB Destination File.
How should I pass a dynamic connection string to my SSIS Package?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用连接字符串生成器构建正确的连接字符串:
http ://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx
然后在 ssis 包中创建两个字符串类型的变量,并在平面文件源上设置表达式和 oledb 使用这些变量作为“ConnectionString”。
然后,当您执行 SSIS 包时,您将从上面的 ConnectionStringBuilder 中分配两个变量值。
Use the Connection String Builder to construct a proper connection string:
http://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlconnectionstringbuilder.aspx
Then create two variables of type string in your ssis package, and set expressions on your flat file source and oledb to use these variables as "ConnectionString".
Then when you execute the SSIS package, you will assign the two variables values from your ConnectionStringBuilder from above.