好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > 多列復合索引的使用 繞過微軟sql server的一個缺陷

多列復合索引的使用 繞過微軟sql server的一個缺陷

熱門標簽:400電話申請需要開戶費嗎 北京辦理400電話多少 智能語音外呼系統哪個牌子好 威海智能語音外呼系統 山西語音外呼系統價格 西安青牛防封電銷卡 重慶防封電銷機器人供應商 南京電銷外呼系統運營商 溫州語音外呼系統代理
然而,微軟sql server在處理這類索引時,有個重要的缺陷,那就是把本該編譯成索引seek的操作編成了索引掃描,這可能導致嚴重性能下降

舉個例子來說明問題,假設某個表T有索引 ( cityid, sentdate, userid), 現在有個分頁列表功能,要獲得大于某個多列復合索引V0的若干個記錄的查詢,用最簡單表意的方式寫出來就是 V >= V0, 如果分解開來,就是:
cityid > @cityid0 or (cityid = @cityid0 and (sentdate > @sentdate0 or (sentdate = @sentdate0 and userid >= @userid0))),

當你寫出上述查詢時,你會期待sql server會自動的把上述識別為V >= V0類型的邊界條件,并使用index seek操作來實施該查詢。然而,微軟的sql server (2005版)有一個重要缺陷(其他的sql server如何還不得知), 當它遇到這樣sql時,sql server就會采用index scan來實施,結果是您建立好的索引根本就沒有被使用,如果這個表的數據量很大,那所造成的性能下降是非常大的。
對于這個問題,我曾經提交給微軟的有關人士,他們進一步要求我去一個正式的網站上去提交這個缺陷,我懶得去做。

不過,對這個缺陷,還是有個辦法能夠繞過去的,只要把上面給出的條件變變形,sql server還是能夠變回到是用index seek, 而不是低性能的index scan. 具體請看我的英文原文吧(對不起了, 我一旦寫了中文,就不想翻成英文,反過來也一樣, 估計大家英文都還可以,實在不行的就看黑體部分吧, ):
The seek predicate of the form "x > bookmark_of_x" is needed in paging related query. The compiler has no difficulty to parse it correctly if x is a single column index, or two columns index, however, if x is a three columns index or more, then the compiler will have a hard time to recognize it. This failure will result in that the seek predicate ended up in residue predicate, which results in a much worse execution plan.
To illustrate the point, take a example,
Create table A( a int, b int, c int, d float, primary key (a, b, c))
now check the plan for the query:
select c, d from A where (a> 111 or a= 111 and
(b > 222 or b = 222 and c > 333))
you can see a table scan op is used, and the Where clause ended up in residue predicate.
However, if you rewrite the query in an equivalent form:
select c, d from A where a> 111 or a= 111 and b > 222 or a= 111 and b= 222 and c >333
Then the compiler can choose an index seek op, which is desired.
The problem is, the compiler should be able to recognize the first form of seek predicate on multiple columns index, it saves the user from having to pay extra time to figure out a get-around, not to mention the first form is a more efficient form of same expression.
上面的問題,可以說是部分的繞過去了,但是,也有繞不過的時候,接著看下面一段:
It looks like that sql server lacks a consept of vector bookmark, or vector comparison or whatever you like to call it.
The workaround is not a perfect workaround. If sql server were to understand the concept of vector bookmark, then the following two would be the same in execution plan and performance:
1. select top(n) * from A where vectorIndex >= @vectorIndex
2. select * from A where vectorIndex >= @vectorIndex and vectorIndex =@vectorIndexEnd
-- @vectorIndexEnd corresponds to the last row of 1.
However, test has shown that, the second statement takes far more time than the first statement, and sql server actually only seek to the begining of the vector range and scan to the end of the whole Index, instead of stop at the end of the vector range.
Not only sql server compile badly when the vector bookmark has 3 columns, test has shown that even with as few as 2 columns, sql serer still can not correctly recognize this is actually a vector range, example:
3. select top (100) a, b, c, d from A where a> 60 or a= 60 and b > 20
4. select a, b, c, d from A where (a> 60 or a= 60 and b > 20) and
(a 60 or a= 60 and b = 21),

上面兩個查詢實質相同(表中的數據剛好如此),并且給出同業的結果集,但是,3比4的速度要快的多,如果去看execution plan也證明3確實應當比4快.
也就是說, 即使在索引vectorIndex只含兩列的情況下, sql server也無法正確的理解范圍表達式 @vectorIndex0 vectorIndex @vectorIndex1, 它能把前半部分正確的解讀為seek, 但是, 后半部分無法正確解讀, 導致, sql server會一直掃描到整個表的末尾, 而不是在@vectorIndex1處停下來.
以下測試代碼, 有興趣的人可以拿去自己玩:

復制代碼 代碼如下:

CREATE TABLE [dbo].[A](
[a] [int] NOT NULL,
[b] [int] NOT NULL,
[c] [int] NOT NULL,
[d] [float] NULL,
PRIMARY KEY CLUSTERED ([a] ASC, [b] ASC, [c] ASC)
)
declare @a int, @b int, @c int
set @a =1
while @a = 100
begin
set @b = 1
begin tran
while @b = 100
begin
set @c = 1
while @c = 100
begin
INSERT INTO A (a, b, c, d)
VALUES (@a,@b,@c,@a+@b+@c)
set @c = @c + 1
end
set @b = @b + 1
end
commit
set @a = @a + 1
end
SET STATISTICS PROFILE ON
SET STATISTICS time ON
SET STATISTICS io ON

select top (10) a, b, c, d from A where (a> 60 or a= 60 and
(b > 20 or b = 20 and c >= 31))
select a, b, c, d from A where (a> 60 or a= 60 and
(b > 20 or b = 20 and c >= 31)) and (a 60 or a= 60 and
(b 20 or b = 20 and c = 40))

select top (10) a, b, c, d from A where a> 60 or a= 60 and b > 20 or a= 60 and b= 20 and c >= 31
select a, b, c, d from A where (a> 60 or a= 60 and b > 20 or a= 60 and b= 20 and c >= 31) and
(a 60 or a= 60 and b 20 or a= 60 and b= 20 and c = 40)
select top (100) a, b, c, d from A where a> 60 or a= 60 and b > 20
select a, b, c, d from A where (a> 60 or a= 60 and b > 20) and (a 60 or a= 60 and b = 21)
select top (100) a, b, c, d from A where a> 60 or a= 60 and b > 20
select a, b, c, d from A where (a> 60 or a= 60 and b > 20) and (a 60 or a= 60 and b = 21)
您可能感興趣的文章:
  • 防止xss和sql注入:JS特殊字符過濾正則
  • 一個過濾重復數據的 SQL 語句
  • MySQL注入繞開過濾的技巧總結
  • SQL注入中繞過 單引號 限制繼續注入
  • SQL注入繞過的技巧總結
  • 關于SQL注入繞過的一些知識點
  • SQL Server簡單模式下誤刪除堆表記錄恢復方法(繞過頁眉校驗)
  • Mysql如何巧妙的繞過未知字段名詳解
  • SQL注入技巧之顯注與盲注中過濾逗號繞過詳析

標簽:河源 新余 宜春 金昌 貸款群呼 黃山 濟寧 中衛

巨人網絡通訊聲明:本文標題《多列復合索引的使用 繞過微軟sql server的一個缺陷》,本文關鍵詞  多列,復合,索引,的,使用,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《多列復合索引的使用 繞過微軟sql server的一個缺陷》相關的同類信息!
  • 本頁收集關于多列復合索引的使用 繞過微軟sql server的一個缺陷的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 97久久97欧美精品A片| 久久精品中文| 99国产精品视频免费观看一公开| 青青草a| 老司机67194精品久久| 国产第113页| 小小11孩岁女被A片| 情欲办公室2日本无删减版| 福利网址大全| 调教高傲女教师为奴| AⅤ亚洲AV天堂波多野吉衣| 可以试看5分钟的毛片| 嗯啊~用力~高潮了~快~原神| 蜜桃秘?无码一线二线三线av| 很黄的网站| 呦女亚洲一区精品| 水富县| 日本流氓片| 榴莲视频app无限看-丝瓜安卓七客分享 | 男女床上黄色| 第一影院| 亚洲国产色婷婷精品综合在线观看| 快色快色成版人app下载| 久久精品二区三区| 曰巨肥老太婆| www.国产精品视频| 国产精品成人免费一区二区 | freekoreaxxxxhd| 黄色一级片免费网站| 欧美三极片| 片多多视频在线观看播放片| 欧美成人做爰无码毛片浴室激情| 日本x片成年免费观看视频| aa一级片| 老师下面的水水嫩嫩的真好吃| 91精品国产综合久久久夜色撩人 | yellow片的视频资源| 总裁做到失禁颤抖尿出来| 萬邦德制藥集團公司简介| 美女gif出处抽搐动态图| 黄色网址是多少|