如何将额外的列传递到SSIS中的表?
我有一个平面文件...并且有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为 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.