本文主要是介绍sql server的参数嗅探,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
参数嗅探定义:当SQL Server第一次执行查询语句、或存储过程、或重新编译时,SQL Server会根据传入参数评估,来生成执行计划缓存,然后参数的值会 一并保存在执行计划缓存里。评估过程 即 参数嗅探。
具体sql:
drop table op_param_sniffing
-- 表定义,及数据插入
create table op_param_sniffing (id bigint IDENTITY(1,1) primary key not null,product_id varchar(100) not null,product_name varchar(100) not null
)declare @id int;
set @id = 1;
while @id < 14
begininsert into op_param_sniffing(product_id, product_name) values('100', '商品100')set @id = @id + 1
end
while @id < 100
begininsert into op_param_sniffing(product_id, product_name) values('200', '商品200')set @id = @id + 1
end
while @id < 10000
begininsert into op_param_sniffing(product_id, product_name) values('300', '商品300')set @id = @id + 1
end-- 索引
create index idx_op_param_sniffing_product_id on op_param_sniffing(product_id)
-- 会走索引和Key Lookup(Clustered),id和product_name会回表查询
select * from op_param_sniffing where product_id = '100'
-- 直接走Clustered Index Scan,因为表里基本都是300的数据,即聚集索引扫描全部即可
select * from op_param_sniffing where product_id = '300'
分析后面2个查询sql的执行计划
可以看到同一个sql,可能会因为传参不同,导致选择不同的执行计划
这篇关于sql server的参数嗅探的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!