通过 ADO.NET 检索 SET STATISTICS IO 和 SET STATISTICS TIME 值?

发布于 2024-10-17 19:48:23 字数 647 浏览 3 评论 0原文

通过 Management Studio 执行 T-SQL 查询时,我可以使用 SET STATISTICS IO开启设置统计时间开启来捕获查询优化的统计信息。

当我使用 .NET 客户端 API 执行 T-SQL 查询而不是使用 Mangaement Studio 的 UI 时,如何收集相同的统计信息?

这似乎是一件显而易见的事情,但在 MSDN 和 Google 搜索了很长一段时间后,我被难住了。我发现的最接近的是SQL Server 的提供程序统计信息 (ADO.NET) 在MSDN上,但从客户端的角度来看,这些统计信息似乎是有关网络连接的客户端统计信息(例如发送/接收的字节数),而不是我正在寻找的服务器端统计信息。

When executing T-SQL queries via Management Studio, I can use SET STATISTICS IO ON and SET STATISTICS TIME ON to capture statistics for query tuning.

How can I gather the same statistics info when I'm using .NET client APIs to execute T-SQL queries instead of using Mangaement Studio's UI?

This seems like an obvious thing to be able to do, but after searching MSDN and Google for quite a while, I'm stumped. The closest thing I found was Provider Statistics for SQL Server (ADO.NET) on MSDN, but those stats seem to be client-side stats about network connectivity (e.g. bytes sent/received) from the client's perspective, not the server-side statistics I'm looking for.

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

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

发布评论

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

评论(1

疏忽 2024-10-24 19:48:23

请参阅此问题的答案。

统计信息只是存储在消息选项卡中。

如果您使用 SET STATISTICS... 与此方法,您应该能够得到您想要的结果。

See the answer to this question.

The statistics info is just stored in the messages tab.

If you use SET STATISTICS... with this method you should be able to get what you are after.

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