如何限制来自SSIS数据源的行?
我在 SSIS 包中有一个 OLE DB 数据源。我想限制行返回特定日期的数据(它有一个日期列)。在 SSIS 中如何实现这一点?
I have an OLE DB Data Source in an SSIS package. I want to restrict rows to return data from a specific date (it has a date column). How can this be achieved in SSIS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我将“OLE DB Source”组件的“Data Access Mode”属性更改为“SQL Command”,并在 TSQL 语句中指定了一个 where 子句。
I changed the "Data Access Mode" property of the "OLE DB Source" component to "SQL Command" and specified a where clause in the TSQL statement.
您可以使用 条件分割 控件或脚本任务。
You could use a conditional split control or a script task.