复杂查询作为源
我有一个查询要用作源。但这是一个巨大的查询,包含创建的大量临时表,并最终加入带来选择数据。因此,我使用 Script Task 来执行此查询,效果非常好。除了脚本任务还有其他方法吗?
I have a query to be used as source. but this is a huge query containing lot of temp tables created and finally joining which brings select data. So I used Script Task for this query which works perfectly. Is there any other way instead of Script task ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您使用 CTE 而不是临时表,则可以直接将其用作 OLE DB 源中的源查询。
If you use CTEs instead of temp tables you can directly use it as a source query in the OLE DB Source.
或者,您可以将当前逻辑保留在脚本任务中,然后将最终选择中的数据插入到临时(物理)表中。然后,数据流任务可以直接在该临时表上执行简单的选择。
Alternatively, you could keep your current logic in a script task but then insert the data from the final select into a temporary (physical) table. The data flow task could then do a simple select directly on that temp table.