SQL Server Profiler 差异

发布于 2024-07-25 01:17:05 字数 252 浏览 4 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(3

哀由 2024-08-01 01:17:05

您可能有一个具有表访问权限的标量用户定义函数。

使用的资源仅由分析器获取:SSMS 不会显示标量 udf 的内部 IO 或 CPU。

示例:

CREATE FUNCTION dbo.MyUdf (
    @param int
)
AS
RETURNS int
BEGIN
    RETURN (SELECT MAX(foo) FROM dbo.MyOtherTable WHERE Key = @param)
END
GO


SELECT
    col1, col2, dbo.MyUdf(col3)
FROM
    dbo.MyFirstTable

但是,这可能无法解释持续时间......

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:

CREATE FUNCTION dbo.MyUdf (
    @param int
)
AS
RETURNS int
BEGIN
    RETURN (SELECT MAX(foo) FROM dbo.MyOtherTable WHERE Key = @param)
END
GO


SELECT
    col1, col2, dbo.MyUdf(col3)
FROM
    dbo.MyFirstTable

However, this may not explain duration...

半窗疏影 2024-08-01 01:17:05

是java/hibernate问题。

Was a java/hibernate issue.

流年已逝 2024-08-01 01:17:05

如果在分析后直接在企业管理器中运行查询,则其所需的所有页面都将缓存在内存中。 这可以带来巨大的改进。

如果在企业管理器中右键单击服务器并选择“属性”,则可以更改服务器可用的内存量。 如果你改变这个数字,哪怕只是一步,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.

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