FMTONLY vs TOP 0

发布于 2024-12-12 05:43:18 字数 60 浏览 0 评论 0原文

如果我只需要检索结果的元数据,那么使用 FMTONLY 与“select top 0 ...”有什么区别?

If I needed to retrieve only metadata of a result, what is the difference between using FMTONLY vs. a "select top 0 ..." ?

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

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

发布评论

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

评论(2

我不吻晚风 2024-12-19 05:43:18

您无法使用 SELECT TOP 0 来查找存储过程返回的内容,但可以使用 FMTONLY 来查找。

You can't use SELECT TOP 0 to find out what an stored procedure returns whereas you can use FMTONLY for that.

刘备忘录 2024-12-19 05:43:18

我对此也很感兴趣,经过一番谷歌搜索后,我发现 FMTONLY 是标准选项,例如 Select top 0 / SELECT What WHERE 1=0 因为正如 Icarus 所说,你不能使用 SELECT TOP 0 来查找存储过程返回的内容。

此外,当使用 FMTONLY 时,Sql 服务器不会生成/编译执行计划,因为该语句实际上并未被执行。

FMTONLY 是 SSRS / Visual Studio 在读取存储过程以获取列名称时使用的方法。

I was interested in this too, after a bit of googling I found that FMTONLY is the standard vs options like Select top 0 / SELECT whatever WHERE 1=0 because as Icarus said you cant use SELECT TOP 0 for finding out what a stored proc returns.

Also when using FMTONLY Sql server wont generate / compile an execution plan since the statement isnt actually being executed.

FMTONLY is the method SSRS / Visual Studio uses when reading stored procs to get the column names.

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