将连接字符串从 C# 传递到 SSIS 包

发布于 2024-11-03 03:00:08 字数 171 浏览 0 评论 0原文

我正在从我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌路终见情 2024-11-10 03:00:08

使用连接字符串生成器构建正确的连接字符串:

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文