使用 SSIS 导入时如何验证 Excel 数据?
我有一个 Excel 文件,该文件中有 3 列。
例如;
ModelNo Cost Quantity
1 2.00 4
2 3 0
3 4 Null
4 3 1
5 7 null
现在我想将这些数据导入到 SQL 表中。
当数量为空时,不插入表中,我们将所有记录作为邮件发送。
数量不为空 我想将记录插入 SQL Server 桌子。
I have one Excel file, in that file have 3 column.
Eg;
ModelNo Cost Quantity
1 2.00 4
2 3 0
3 4 Null
4 3 1
5 7 null
Now I want to import these data into a SQL table.
When quantity is null not insert into table we send all record as mail.
The quantity is not null I want to insert record into SQL Server
table.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我将在数据流任务中使用 DFT 条件拆分,如下所示...然后在控制流中通过电子邮件发送存储在“空值”表中的 NULL 记录。
I would use DFT Conditional Split in data flow task, as follows...then in the control flow email the NULL rcords that are stored in the "null value" table.