SQL Server Profiler 差异
我正在使用 Sql Profiler 解决一个奇怪的问题。 在运行一些性能测试脚本时,我运行分析器来查找瓶颈。 一个特定的语句似乎花费了大量时间 - CPU 1407、读取 75668 和持续时间 175。
但是,当我在 Management Studio 中运行相同的语句时,SQL Profiler 返回 CPU 16、读取 4 和 175。 持续时间 55。
谁能指出我做错了什么,因为我对此完全感到困惑。
谢谢,苏珊。
I am struggling with a strange problem using Sql Profiler. While running some performance testing scripts, I run profiler to find bottlenecks. One particular statement seems to be taking a lot of time - with CPU 1407, Reads 75668 and Duration of 175.
However when I run the same statement in Management Studio, SQL Profiler returns CPU 16, Reads 4 & Duration 55.
Can anyone point me towards what I am doing wrong, as I am completely baffled by this.
Thanks, Susan.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能有一个具有表访问权限的标量用户定义函数。
使用的资源仅由分析器获取:SSMS 不会显示标量 udf 的内部 IO 或 CPU。
示例:
但是,这可能无法解释持续时间......
You may have a scalar user defined function that has table access.
The resources used are only picked up by profiler: SSMS won't show the internal IO or CPU of the scalar udf.
Example:
However, this may not explain duration...
是java/hibernate问题。
Was a java/hibernate issue.
如果在分析后直接在企业管理器中运行查询,则其所需的所有页面都将缓存在内存中。 这可以带来巨大的改进。
如果在企业管理器中右键单击服务器并选择“属性”,则可以更改服务器可用的内存量。 如果你改变这个数字,哪怕只是一步,SQL Server都会刷新它的缓存。
If you run the query in enterprise manager directly after the profiling, all pages it needs will be cached in memory. This can lead to drastic improvements.
If you right-click the server in Enterprise Manager and select Properties, you can change the amount of memory available to the server. If you change this number even one step, SQL server will flush its cache.