T-SQL 从视图中选择变量要慢得多

T-SQL Select from view much slower with variable(T-SQL 从视图中选择变量要慢得多)
本文介绍了T-SQL 从视图中选择变量要慢得多的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在 where 子句中指定值时,我有一个运行速度很快(<1s)的视图:

I have a view that runs fast (< 1s) when specifying a value in the where clause:

SELECT *
FROM vwPayments
WHERE AccountId = 8155

...但是当该值是变量时运行缓慢(~3s):

...but runs slow (~3s) when that value is a variable:

DECLARE @AccountId BIGINT = 8155

SELECT *
FROM vwPayments
WHERE AccountId = @AccountId

为什么第二个查询的执行计划不同?为什么它运行得这么慢?

Why is the execution plan different for the second query? Why is it running so much slower?

推荐答案

简而言之,查询优化器用来选择最佳计划的统计分析会在值为已知值时选择查找,并且它可以利用统计信息和扫描值未知.它在第二个选择中选择扫描,因为在知道 where 子句的值之前编译计划.

In short the statistical analysis the query optimizer uses to pick the best plan picks a seek when the value is a known value and it can leverage statistics and a scan when the value is not known. It picks a scan in the second choice because the plan is compiled before the value of the where clause is known.

虽然我很少建议在这种特定情况下使用查询分析器,但您可以使用 forceseek 提示或其他查询提示来覆盖引擎.但是请注意,在引擎的帮助下找到获得最佳计划的方法是更好的解决方案.

While I rarely recommend bossing the query analyzer around in this specific case you can use a forceseek hint or other query hints to override the engine. Be aware however, that finding a way to get an optimal plan with the engine's help is a MUCH better solution.

我快速搜索了谷歌并找到了一篇体面的文章更深入地介绍了影响查询计划的局部变量的概念.

I did a quick Google and found a decent article that goes into the concept of local variables affecting query plans more deeply.

这篇关于T-SQL 从视图中选择变量要慢得多的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!

本站部分内容来源互联网,如果有图片或者内容侵犯您的权益请联系我们删除!

相关文档推荐

Execute complex raw SQL query in EF6(在EF6中执行复杂的原始SQL查询)
SSIS: Model design issue causing duplications - can two fact tables be connected?(SSIS:模型设计问题导致重复-两个事实表可以连接吗?)
SQL Server Graph Database - shortest path using multiple edge types(SQL Server图形数据库-使用多种边类型的最短路径)
Invalid column name when using EF Core filtered includes(使用EF核心过滤包括时无效的列名)
How should make faster SQL Server filtering procedure with many parameters(如何让多参数的SQL Server过滤程序更快)
How can I generate an entity–relationship (ER) diagram of a database using Microsoft SQL Server Management Studio?(如何使用Microsoft SQL Server Management Studio生成数据库的实体关系(ER)图?)