复杂查询作为源

发布于 2024-11-16 19:55:49 字数 98 浏览 0 评论 0原文

我有一个查询要用作源。但这是一个巨大的查询,包含创建的大量临时表,并最终加入带来选择数据。因此,我使用 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 技术交流群。

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

发布评论

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

评论(2

ぇ气 2024-11-23 19:55:49

如果您使用 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.

念三年u 2024-11-23 19:55:49

或者,您可以将当前逻辑保留在脚本任务中,然后将最终选择中的数据插入到临时(物理)表中。然后,数据流任务可以直接在该临时表上执行简单的选择。

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.

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