使用 T-SQL 查询和 SSIS 中的存储过程执行 SQL 任务

发布于 2024-11-19 05:10:01 字数 172 浏览 2 评论 0原文

目前,在 SSIS 执行 SQL 任务中,我正在调用一个存储过程,并且在该过程中我有一个 MERGE 语句。

如果我直接在执行 SQL 任务中调用该查询 (T-SQL MERGE) 有什么区别吗? (如果我们使用 SP,是否会产生像 Log 一样的差异?)

请回复我...

提前致谢

In SSIS Execute SQL Task currently I am calling a stored procedure and inside the procedure I have a MERGE statement.

Is there any difference if I call that query (T-SQL MERGE) directly in the Execute SQL Task?
(are there any differences like Log will create if we used SP?)

Please reply me...

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

水中月 2024-11-26 05:10:01

存储过程将为您提供更易于维护的解决方案,因为您将能够利用代码重用,并且如果您的查询逻辑发生变化,则无需更改/重新发布包

存储过程也可能为您提供最快的解决方案执行时间,因为它将被编译并且执行计划将在后续运行中重用

Stored procedure will provide you with a more maintainable solution as you will be able to leverage code reuse and there will be no need to change / re-release the package if your query logic changes

A stored procedure is also likely to provide you with the fastest execution time as it will be compiled and the execution plan will be reused on subsequent runs

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