在SQL Server中使用Hints測試索引(Using Hints To Test Indexes in SQL Server)

來源:互聯網
上載者:User

from http://www.mssqltips.com/tip.asp?tip=2045

Using Hints To Test Indexes in SQL Server
Written By: Ken Simmons -- 6/24/2010 -- 1 comments -- print -- free stuff --

Problem
When tuning indexes, it is somewhat difficult to tell how much impact the changes you have made will have on a query. Other than just looking at the different execution plans, is there an easy way to compare the queries using the old and new indexes? 

Solution
After making index changes, I always like to use hints to see how much impact the change has on a query. Let's take the following query that uses the AdventureWorks database as an example.

USE

 

AdventureWorks
GO

SELECT

NationalIDNumber
FROM HumanResources.Employee
WHERE Title = 'Stocker'

As you can see by the following execution plan, the query uses a clustered index scan to retrieve the information.

Since the query is searching by Title and returning the NationalIDNumber, you can create the following non-clustered index on Title and include the NationalIDNumber, so all of the information the query needs is located in the index. You should note that if you did not include the NationalIDNumber, the optimizer would still find it more optimal to scan the clustered index instead of seeking the non-clustered index and having to lookup the NationalIDNumber.

CREATE

INDEX ix_Title_Include
ON HumanResources.Employee(Title)
INCLUDE (NationalIDNumber)

 

INDEX ix_Title_Include
ON HumanResources.Employee(Title)
INCLUDE (NationalIDNumber)

INDEX ix_Title_Include
ON HumanResources.Employee(Title)
INCLUDE (NationalIDNumber)

 

 

After creating the new index and rerunning the original query, you will now see that the query is performing an index seek on the new non-clustered index. That sounds good, but how much more efficient is it?

In order to answer that question, you can use a hint to force one of the queries to use the original index as shown in the following query.

SELECT

 

NationalIDNumber
FROM HumanResources.Employee
WITH (INDEX (PK_Employee_EmployeeID))
WHERE Title = 'Stocker'

SELECT

 

NationalIDNumber
FROM HumanResources.Employee
WHERE Title = 'Stocker'

You can now see that using the new index, the query cost is only 29% compared to the original index which is 71%. If you saw something like 50/50, you may want to rethink the new index, because it hasn't given you any performance and now you have an additional index to update and maintain.

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.