为什么此存储过程在 Management Studio 中执行得很快,但在应用程序中却不然?

发布于 2024-07-22 14:31:24 字数 655 浏览 4 评论 0原文

我将此查询作为存储过程:

SELECT     ID
    FROM         dbo.tblRentalUnit
    WHERE     (NOT EXISTS
        (SELECT     1 AS Expr1
        FROM          dbo.tblTenant
        WHERE      (dbo.tblRentalUnit.ID = UnitID)))

在 Microsoft SQL Server Management Studio Express 中,它在 16 毫秒内执行。 当我将其放入 Visual Studio 2008 自动生成的类型化数据集中时,它的执行时间为 64,453 毫秒。 超过一分钟。

估计和执行计划是这样的:

Select [0%] <- Filter [1%] <- Merge Join (Left Outer Join) [28%] <- Index Scan [16%]
                                                                 <- Sort [43%] <- Clustered Index Scan [12%]

为什么会出现这种差异,我该如何纠正它?

I have this query as a stored procedure:

SELECT     ID
    FROM         dbo.tblRentalUnit
    WHERE     (NOT EXISTS
        (SELECT     1 AS Expr1
        FROM          dbo.tblTenant
        WHERE      (dbo.tblRentalUnit.ID = UnitID)))

In Microsoft SQL Server Management Studio Express, it executes in 16 ms. When I have it in a typed dataset auto-generated by Visual Studio 2008, it executes in 64,453 ms. More than a minute.

Estimated and Execution plan are like this:

Select [0%] <- Filter [1%] <- Merge Join (Left Outer Join) [28%] <- Index Scan [16%]
                                                                 <- Sort [43%] <- Clustered Index Scan [12%]

Why is this difference here, and how can I correct it?

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

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

发布评论

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

评论(3

往日 2024-07-29 14:31:24

这听起来像是一个错误缓存的查询计划。

您的索引和统计数据是最新的吗?

顺便说一句,如果 tblTenant.UnitId 是 tblRentalUnit.ID 的外键
那么你的查询可以重写为:

SELECT ru.ID    
FROM         
    dbo.tblRentalUnit ru
    LEFT JOIN dbo.tblTenant t ON ru.ID = t.UnitID
WHERE
    t.UnitID IS NULL

It sounds like an incorrectly cached query plan.

Are your indexes and statistics up to date?

BTW, if tblTenant.UnitId is a Foriegn Key into tblRentalUnit.ID
then your query can be rewritten as:

SELECT ru.ID    
FROM         
    dbo.tblRentalUnit ru
    LEFT JOIN dbo.tblTenant t ON ru.ID = t.UnitID
WHERE
    t.UnitID IS NULL
狼性发作 2024-07-29 14:31:24

您是否在每次测试(来自任一客户端)之前刷新缓冲区? 确保在每个测试之间执行 DBCC DROPCLEANBUFFERS 和 DBCC FREEPROCCACHE。

Did you flush the buffers before each test (from either client)? Make sure you are executing DBCC DROPCLEANBUFFERS and DBCC FREEPROCCACHE between each test.

玉环 2024-07-29 14:31:24

tblRentalUnit.ID 是否已正确索引?

Is tblRentalUnit.ID properly indexed?

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