如何将额外的列传递到SSIS中的表?

发布于 2024-10-29 23:21:16 字数 261 浏览 0 评论 0原文

我有一个平面文件...并且有一个 SQLSErver 表。 我需要将数据从平面文件复制到表。平面文件有 10 列...我可以复制所有 10 列。

但我表中还有一列...“提取日期”。在此列中,我必须插入 GetDate() 值。

我该怎么做?

注意:我有 3 个数据流任务:- 1)FlatFile 连接,2)派生列编辑器(修剪值..如果为空则传递 null)。 3)OLEDB 目的地。

I have a flatfile...and have a SQLSErver table.
I need to copy the data from flatfile to table. The flat file has 10 columns...I am able to copy all 10 columns.

But I have one more column in table..."Extract Date". In this column I have to insert GetDate() value.

How can I do this ?

NOTE : I have 3 dataflow tasks :- 1)FlatFile Connection, 2)Derived column edtor (to trim values..and pass null if it's empty). 3)OLEDB Destination.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

似最初 2024-11-05 23:21:16

为 ExtractDate 列指定表本身的默认值 getdate(),或者在 SSIS 中,使用 GETDATE() 作为表达式将新列添加到派生列任务,并将其传递到 OleDb 目标。

Either give the ExtractDate column a default of getdate() on the table itself, or, in SSIS, add a new column to the Derived Column Task with GETDATE() as the expression, and pass this to the OleDb destination.

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