Management Studio 中的查询执行时间分析器。它测量什么?
我的生产 SQL Server 位于远程数据中心(并且 Web 服务器位于同一数据中心)。在开发过程中,我们观察到一个特定的视图需要在本地开发 SQL Server 中执行很长时间(大约 60-80 秒),我们对此表示满意。它被提升到生产环境,当我在生产数据库上运行相同的查询时(位于数据中心)从我本地的 Management Studio 中我看到查询运行大约需要 7 分钟 17 秒(可在 Management Studio 的右下角找到)。当我运行探查器时,我看到所花费的时间执行该查询需要 437101 微秒 毫秒,尽管它在 Management Studio 中显示为 7:17。 ,实际上大约是 437101 毫秒。我的 DBA 说,在产品中,视图只需要大约 60 到 80 秒,尽管我从 Profiler 和 Management Studio 看到不同的数字。有人可以告诉我这些持续时间在 Profiler 和 Management Studio 中意味着什么吗?
我的猜测:发送最后一个请求字节和从服务器接收最后一个响应字节之间的持续时间。客户统计如下: 客户端处理时间:90393 总执行时间:92221 服务器回复的等待时间:1828
我对探查器上的“持续时间”含义的最佳猜测是“SQL Server(优化引擎解析查询、生成查询计划或使用现有查询计划+从不同的查询获取记录)所花费的时间页)生成结果集,其中不包括数据通过线路传输到客户端所花费的时间”
编辑:我发现这两个时间大致相同(管理工作室与探查器)。它们与我在客户统计数据中看到的时间有何关系?
有人可以进一步阐明这些吗?
I have my production SQL Server in a remote data center(and the web servers are located in the same data center). During development we observed that one particular view takes a long time to execute (about 60-80 secs) in our local development SQL Server, and we were OK with it.It was promoted to production and when I run the same query on Production DB (which is in the data center)from my local Management Studio I see that the query takes about 7 minutes,17 secs to run (available the bottom right corner of the management studio).When I ran a profiler I see that the time taken to execute that query is 437101 microseconds milliseconds, though it shows up in management studio as 7:17. , which actually is about 437101 milliseconds. My DBA says that in prod the view takes just about 60 to 80 seconds though I see different numbers from profiler and management studio.Can someone tell me what these durations mean in Profiler and management studio ?
My guess: duration between sending the last request byte and receiving the last response byte from the server. The client statistics were as follows:
Client Processing time: 90393
Total Execution time:92221
Wait time on server replies: 1828
My best guess on what "duration" on the profiler means is "the time taken by SQL Server (optimization engine to parse the query,generate the query plan or use the existing query plan + fetch records from different pages) to generate the result set which excludes the time taken by data to travel over the wire to the client"
Edit: I find that both these times are about the same (management studio vs profiler). How do they relate with the times I see in client statistics ?
Can some one throw more light on these ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试用这个:
Try with this:
如果我正确理解您的问题,您首先会质疑 Profiler 报告的持续时间与 SSMS 中显示的统计数据之间的差异(一般时间在右下角和/或通过 SET STATISTICS TIME ON)。除此之外,您似乎不相信生产 DBA 的评论,即视图在大约 60 秒的预期持续时间内执行。
首先,从联机丛书中,SSMS 将通过 SET STATISTICS TIME ON 报告回来的统计数据:
您对此很准确。至于 Profiler 中的 Duration,它被描述为:
事件”案例(关于 Profiler 中的持续时间)是选择的执行,其中包括向客户端的交付;这在两种情况下都是一致的,
您似乎怀疑地理位置是远程执行查询时持续时间较长的罪魁祸首。您可以通过在一个查询窗口中的视图上执行选择,然后生成另一个查询窗口并检查查询的等待类型来测试这一点:
如果地理位置是,我怀疑您会看到类似 ASYNC_NETWORK_IO 的等待类型 。问题 - 否则,如果您正在分析远程执行的查询,那么持续时间将反映您在 SSMS 中看到的时间统计信息(如果您正在使用 Profiler 并发现该情况)。 当从与 SQL Server 位于同一数据中心的 Web 服务器之一执行该查询时,该查询的持续时间仍然需要 7 分钟,那么 DBA 就是个大骗子:)。我会使用 Profiler 记录耗时超过 1 分钟的查询,尝试筛选您的视图并取平均值来查看您是否达到了性能目标。
因为没有发布其他答案,所以我担心我在这里偏离了基地 - 但已经晚了,而且我对此很陌生,所以我想我应该尝试一下!
If I'm understanding your question correctly, you are first questioning the difference between the Duration reported by Profiler and the statistics presented in SSMS (either in lower right-hand corner for general time and/or by SET STATISTICS TIME ON). In addition to that, you seem to be unconvinced of the production DBA's comment that the view is executing in the expected duration of ~60 seconds.
First, from Books Online, the statics that SSMS would report back via SET STATISTICS TIME ON:
You're spot-on for this. As for Duration in Profiler, it is described as:
From where I sit, these two should be functionally equivalent (and, as I'm sure you noticed, Profiler will report in microseconds if your going against SQL 2005 or later). I say this because the "event" in this case (regarding Duration in Profiler) is the execution of the select, which includes delivery to the client; this is consistent in both cases.
It seems you suspect that geography is the culprit to the long duration when executing the query remotely. This very well may be. You can test for this by executing the select on the view in one query window then spawning another query window and reviewing the wait type on the query:
I would suspect that you would see something like ASYNC_NETWORK_IO as the wait type if geography is the problem - otherwise, check out what does come of this. If you're Profiling the query of your remote execution, the Duration will be reflective of the time statistics you see in SSMS. HOWEVER, if you're using Profiler and finding that the duration of this query when executed from one of the web servers that sits in the same data center as the SQL Server is still taking 7 minutes, then the DBA is a big, fat liar :). I would use Profiler to record queries that take longer than 1 minute, try to filter for your view and take the average to see if you're on target for performance.
Because there are no other answers posted, I'm concerned that I'm way off base here - but it's late and I'm new to this so I thought I'd give it a go!
如果您打开查询的“属性”选项卡,您可能会发现一些神奇的“经过时间”,这可能会给您一些执行时间...
此信息也可能有所帮助:
http://blog.sqlauthority.com/2009/ 10/01/sql-server-sql-server-management-studio-and-client-statistics/
If you open the Property tab for your query you may find some magical "Elapsed Time" that may give you some execution time...
This info could also help:
http://blog.sqlauthority.com/2009/10/01/sql-server-sql-server-management-studio-and-client-statistics/