使用“索引微调向导”
“索引微调向导”除建议使用基表的索引之外,还建议使用索引视图。使用该向导可提高管理员确定索引和索引视图相结合的能力,从而优化针对数据库执行的典型混合查询的性能。
由于“索引微调向导”强制使用所有必需的 set 选项(以确保结果集的正确性),其索引视图将会成功创建。不过,如果您的应用程序的选项没有按照要求设置,可能无法利用这些视图。对那些参与索引视图定义的表执行的插入、更新或删除操作可能会失败。
维护索引视图
sql server 自动维护索引视图,这与维护任何其它索引的情况类似。对于普通索引而言,每个索引都直接连接到单个表。通过对基础表执行每个 insert、update 或 delete 操作,索引相应地进行了更新,以便使存储在该索引中的值始终与表一致。
索引视图的维护与此类似。不过,如果视图引用了多个表,则对这些表中的任何一个进行更新都需要更新索引视图。与普通索引不同的是,对任何一个参与的表执行一次行插入操作都可能导致在索引视图中进行多次行插入操作。更新和删除操作的情况也是如此。因此,较之于维护表的索引,维护索引视图的代价更为高昂。
在 sql server 2000 中,某些视图可以更新。如果某个视图可以更新,则使用 insert、update 和 delete 语句可通过该视图直接修改根本基表。为某个视图创建索引并不会妨碍该视图的更新。有关可更新视图的详细信息,请参阅关于 sql server 2000 的“sql server 联机图书”中的“通过视图修改数据(英文)”。
维护成本的考虑因素
设计索引视图时应该考虑以下几点:
数据库中需要有一个额外的存储空间用于索引视图。索引视图的结果集以类似于典型表存储空间的方式物理保存在数据库中。
sql server 自动维护视图。因此,对定义视图所据的基表的任何更改都可能引起视图索引的一处或多处更改,从而导致维护开销的增加。
一个视图获得的净性能提高就是视图提供的查询执行节约总计与存储和维护该视图耗费的成本之间的差。
估计视图将占用的所需存储空间要相对简单一些。用 sql 查询分析器的“显示估计的执行计划”工具求视图定义中 select 语句的值。该工具将得出查询返回的行数和行大小的近似值。将这两个值相乘,即可估计出视图的可能大小。不过这只是一个近似值。视图索引的实际大小只能通过创建视图索引来精确得出。
从 sql server 执行的自动维护考虑因素的观点出发,“显示估计的执行计划”的功能可能会对此开销的影响有所了解。如果用 sql 查询分析器评估修改视图的语句(针对视图的 update 语句、针对基表的 insert 语句),showplan 将包括该语句的维护操作。同时考虑此成本和此操作将在生产环境中发生的次数,可以指示视图维护的可能成本。
通常建议对视图或基表进行的任何修改和更新都应该尽可能地成批执行,而不要单独进行。这样可以减少视图维护的某些开销。
创建索引视图
创建索引视图所需的步骤与视图的成功实现密不可分。
确保将在视图中引用的所有现有表的 set 选项都正确。
创建任何新表和视图之前,确保会话的 set 选项已正确设置。
确保视图定义是确定的。
使用 with schemabinding 选项创建视图。
创建视图的唯一群集索引。
使用 set 选项以获得一致的结果
如果在执行查询时启用不同的 set 选项,则在 sql server 中对同一个表达式求值会产生不同的结果。例如,将 set 选项 concat_null_yields_null 设置为 on 之后,表达式 'abc' + null 返回的值是 null。而将 concat_null_yieds_null 设置为 off 之后,该表达式得出的结果却是 'abc'。索引视图要求多个 set 选项的值都固定,以确保这些视图能够得到正确维护并返回一致的结果。
只要出现以下情况,就必须将下表中的 set 选项设置为要求的值列中所示的值:
创建了索引视图。
对索引视图中引用的任何表执行了任何 insert、update 或 delete 操作。
查询优化器使用索引视图来生成查询计划。
set
选项 要求
的值 默认
服务器
的值 ole db
和
odbc 的值 db lib
的值
ansi_nulls on off on off
ansi_padding on on on off
ansi_warning on off on off
arithabort on off off off
concat_null_yields_null on off on off
numeric_roundabort off off off off
quoted_identifier on off on off
如果使用的是 ole db 或 odbc 服务器连接,唯一必须修改的值是 arithabort 的设置。所有 db lib 值都必须使用 sp_configure 在服务器级上正确设置或使用 set 命令从应用程序正确设置。有关 set 选项的详细信息,请参阅关于 sql server 2000 的“sql server 联机图书”中的“使用 sql server 中的选项(英文)”。
使用确定性函数
索引视图的定义必须是确定性的。如果选择列表中的所有表达式以及 where 和 group by 子句都是确定性的,则视图就是确定性的。只要用特定的一组输入值对确定性表达式进行求值,一定会返回同一个结果。只有确定性函数可以加入确定性表达式。例如,dateadd 是确定性函数,因为将任何给定的一组变量值赋予它的三个参数进行求值,返回的总是同一个结果。而 getdate 则不是确定性函数,因为始终用同一个变量调用它,而它每次执行后返回的值都不相同。有关详细信息,请参阅关于 sql server 2000 的“sql server 联机图书”中的“确定性和非确定性函数”。
即便某个表达式是确定性的,但如果其中包含浮动表达式,确切的结果就可能取决于处理器的体系结构或微代码的版本。要确保 sql server 2000 中数据的完整性,此类表达式只能加入索引视图的非关键列。不包含浮动表达式的确定性表达式被称为精确的表达式。只有精确的确定性表达式可以加入索引视图的关键列和 where 或 group by 子句。
使用 columnproperty 函数和 isdeterministic 属性来确定视图列是否是确定性的。使用 columnproperty 函数和 isprecise 属性来确定包含架构绑定的视图中的确定性列是否是精确的。如果为 true,则 columnproperty 会返回 1,如果为 false,则返回 0,如果是无效的输入(列不是确定性的),则返回 null。例如,select columnproperty(object_id('vdiscount1'),'sumdiscountprice','isprecise') 返回的是 0,因为 sumdiscountprice 列引用了表 order details 中的浮动列 discount。而同一视图中的列 sumprice 既是确定性的又是精确的。
注意: 该 select 语句所基于的视图能够在示例部分找到(视图 1)。
其它要求
除“设计准则”、“使用 set 选项以获得一致的结果”和“使用确定性函数”部分中列出的要求之外,还必须符合以下要求。
基表要求
基表在创建时必须正确设置 set 选项,否则就不能被包含架构绑定的视图引用。
表必须通过视图定义中的两部分名称(所有者.表名)引用。
函数要求
用户定义的函数必须使用 with schemabinding 选项创建。
用户定义的函数必须通过两部分名称(所有者.函数)引用。
视图要求
视图必须使用 with schemabinding 选项创建。
视图必须只引用同一数据库中的基表,而不能引用其它视图。
语法限制
对视图定义的语法有几个限制。视图定义不能包含以下内容:
count(*)
rowset 函数
派生表
自联接
distinct
stdev、variance、avg
float* 列、文本列、ntext 列、图像列
子查询
全文谓词(contain、freetext)
可空表达式的 sum
min、max
top
outer 联接
union
注意: 索引视图可以包含浮动列,不过,此类列不能包含在群集索引关键字中。
group by 限制
如果未使用 group by,表达式不能在选择列表中使用。
如果使用了 group by,则 view 定义:
必须包含 count_big(*)。
不得包含 having、cube 或 rollup。
这些限制只适用于索引视图定义。查询可以在其执行计划中使用索引视图,即便该索引视图并不符合这些 group by 限制。
索引要求
执行 create index 语句的用户必须是视图所有者。
如果视图定义中包含 group by 子句,唯一群集索引的关键字只能引用 group by 子句中指定的列。
示例
本部分的示例阐述索引视图在两种主要查询(聚合和联接)中的使用问题。同时还说明查询优化器在确定某个索引视图是否可用时使用的条件。有关这些条件的完整列表,请参阅查询优化器如何使用索引视图。
查询基于 northwind(sql server 2000 中提供的数据库样本)中的表,并可以写入的方式执行。创建视图的前后,最好使用 sql 查询优化器中的“显示执行计划”工具来查看查询优化器选定的计划。尽管示例中阐述了优化器是如何选择成本最低的执行计划的,但因为 northwind 数据库样本太小,因此无法体现性能的提高。
以下查询显示如何从 order details 表中返回具有最大总折扣的五种产品的两个方法。
查询 1
select top 5 productid, sum(unitprice*quantity) -
sum(unitprice*quantity*(1.00-discount))as rebate
from [order details]
group by productid
order by rebate desc
查询 2
select top 5 productid, sum(unitprice*quantity*discount)as rebate
from [order details]
group by productid
order by rebate desc
查询优化器选定的执行计划包含:
对 order details 表的群集索引扫描,估计有 2,155 行。
哈希匹配/聚合运算符,该运算符基于 group by 列将选定的行放入哈希表,然后计算每行的 sum 聚合。
基于 order by 子句的 top 5 排序运算符。
视图 1
添加包括 rebate 列所需聚合的索引视图将更改查询 1 的查询执行计划。在数百万行的大表上,查询的性能也将明显提高。
create view vdiscount1 with schemabinding
as
select sum(unitprice*quantity)as sumprice,
sum(unitprice*quantity*(1.00-discount))
as sumdiscountprice, count_big(*) as count, productid
from dbo.[order details]
group by productid
go
create unique clustered index vdiscountind on vdiscount1 (productid)
第一个查询的执行计划显示 vdiscount1 视图由查询优化器使用。不过,由于该视图不包含 sum(unitprice*quantity*discount) 聚合,因此不会被第二个查询使用。可以创建另一个可以同时满足上述两个查询的索引视图。
视图 2
create view vdiscount2 with schemabinding
as
select sum(unitprice*quantity)as sumprice,
sum(unitprice*quantity*(1.00-discount))as sumdiscountprice,
sum(unitprice*quantity*discount)as sumdiscountprice2, count_big(*)
as count, productid
from dbo.[order details]
group by productid
go
create unique clustered index vdiscountind on vdiscount2 (productid)
有了该索引视图,现在两个查询的查询执行计划包含:
对 vdiscount2 视图的群集索引扫描,估计有 77 行
基于 order by 子句的 top 5 排序函数
查询优化器选择该视图是因为它提供了最低的执行成本,尽管在查询中并未引用该视图。
查询 3
查询 3 类似于前几个查询,只是 productid 已被 orderid 所取代,视图定义中没有包括该列。这违背了以下条件:查询选择列表中的所有表达式都必须能从未包括在视图定义内的表的视图选择列表中派生。
select top 3 orderid, sum(unitprice*quantity*discount) orderrebate
from dbo.[order details]
group by orderid
order by orderrebate desc
要求单独的索引视图来满足该查询。可以对 vdiscount2 进行修改,使它包括 orderid,但是所生成视图的行数将与原表的行数相同,因此,提供的性能也不会高于使用基表所提供的性能。
查询 4
该查询可生成每个产品的平均价格。
select productname, od.productid,
avg(od.unitprice*(1.00-discount)) as avgprice, sum(od.quantity) as units
from [order details] od, products p
where od.productid=p.productid
group by productname, od.productid
索引视图的定义中不能包括复杂的聚合(例如,stdev、variance、avg),不过,如果索引视图中包括几个联合起来执行复杂聚合的简单聚合函数,即可用于执行包含 avg 的查询。
视图 3
该索引视图包含执行 avg 函数所需的简单聚合函数。在创建了视图 3 后执行查询 4 时,执行计划会显示正被使用的视图。优化器可以从视图的简单聚合列 price 和 count 中导出 avg 表达式。
create view view3 with schemabinding
as
select productid, sum(unitprice*(1.00-discount))as price,
count_big(*)as count, sum(quantity)as units
from dbo.[order details]
group by productid
go
create unique clustered index iv3 on view3 (productid)
查询 5
该查询与查询 4 相同,只不过包括一个附加搜索条件。即使该附加搜索条件只引用未包括在视图定义内的表中的列,视图 3 也将用于该查询。
select productname, od.productid, avg(od.unitprice*(1.00-discount))
as avgprice, sum(od.quantity)as units
from [order details] as od, products as p
where od.productid=p.productid
and p.productname like '%tofu%'
group by productname, od.productid
查询 6
查询优化器不能将视图 3 用于该查询。附加搜索条件 od.unitprice>10 包含视图定义内的表中的列,而该列却不出现在 group by 列表中,搜索谓词也不出现在视图定义中。
select productname, od.productid, avg(od.unitprice*(1.00-discount))
as avgprice, sum(od.quantity) as units
from [order details] od, products p
where od.productid = p.productid
and od.unitprice > 10
group by productname, od.productid
查询 7
相反,查询优化器可以将视图 3 用于查询 7,原因是新搜索条件 od.productid in (1,2,13,41) 中定义的列包括在视图定义内的 group by 子句中。
select productname, od.productid, avg(od.unitprice*(1.00-discount))
as avgprice, sum(od.quantity) as units
from [order details] as od, products as p
where od.productid = p.productid
and od.productid in (1,2,13,41)
group by productname, od.productid
视图 4
该视图在视图定义中包括了列 od.discount,可以满足查询 6 的条件。
create view view4 with schemabinding
as
select productname, od.productid, sum(od.unitprice*(1.00-discount))
as avgprice, sum(od.quantity) as units, count_big(*) as count
from dbo.[order details] as od, dbo.products as p
where od.productid = p.productid
and od.unitprice > 10
group by productname, od.productid
go
create unique clustered index vdiscountind on view4 (productname, productid)
查询 8
视图 4 的同一个索引还将用于一个添加了与表 orders 的联接的查询。该查询符合以下条件:查询 from 子句中列出的表是索引视图的 from 子句中表的超集。
select productname, od.productid, avg(od.unitprice*(1.00-discount))
as avgprice, sum(od.quantity) as units
from dbo.[order details] as od, dbo.products as p, dbo.orders as o
where od.productid = p.productid and o.orderid = od.orderid
and od.unitprice > 10
group by productname, od.productid
最后两个查询是查询 8 的变体。每个变体都违背了一个优化器条件,因此与查询 8 不同,不能使用视图 4。
查询 8a
由于视图定义中的 unitprice > 10 与查询中的 unitprice > 25 之间的 where 子句不匹配,所以 q8a 不能使用索引视图。查询搜索条件谓词必须是视图定义中搜索条件谓词的超集。
select productname, od.productid, avg(od.unitprice*(1.00-discount)) avgprice,
sum(od.quantity) as units
from dbo.[order details] as od, dbo.products as p, dbo.orders as o
where od.productid = p.productid and o.orderid = od.orderid
and od.unitprice > 25
group by productname, od.productid
查询 8b
注意,表 orders 没有参与索引视图 v4 的定义。尽管如此,在该表中添加谓词将禁止使用索引视图,原因是添加的谓词可能会消除聚合中的其它行(如查询 8b 中所示)。
select productname, od.productid, avg(od.unitprice*(1.00-discount))
as avgprice, sum(od.quantity) as units
from dbo.[order details] as od, dbo.products as p, dbo.orders as o
where od.productid = p.productid and o.orderid = od.orderid
and od.unitprice > 10
and o.orderdate > '01/01/1998'
group by productname, od.productid
有关详细信息
microsoft sql server 2000 联机图书包含索引视图的详细信息。有关其它信息,请参阅以下资源:
microsoft sql server web 站点(英文)。
microsoft sql server 开发人员中心(英文)。
sql server 杂志(英文)。
microsoft.public.sqlserver.server 和 microsoft.public.sqlserver.datawarehouse 新闻组,其站点是:news://news.microsoft.com(英文)。
关于 sql server 的 microsoft 正式课程。有关最新的课程信息,请参阅 microsoft 培训和服务站点(英文)。