Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

As this article's figure 4 says, SQL Server 2005 + can return you a list of missing indexes. It stores 2 important info about missing indexes:

[EqualityUsage],[InequalityUsage]

If I have a missing index where:

[EqualityUsage]='col1',[InequalityUsage]='col2'

Should I create an index with Indexed Key Columns:

'col1,col2'

or

'col2,col1'

?

share|improve this question

2 Answers

up vote 3 down vote accepted

col1, col2

CREATE INDEX

To convert the information returned by sys.dm_db_missing_index_details into a CREATE INDEX statement, equality columns should be put before the inequality columns, and together they should make the key of the index. Included columns should be added to the CREATE INDEX statement using the INCLUDE clause.

share|improve this answer

if you had only one of the two to search with, which would it be? list that first

share|improve this answer
This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post. – Rostyslav Dzinko Aug 29 '12 at 20:02
@Rostyslav Dzinko, I strongly disagree. it provides a method to determine how to solve this and all similar future questions. – KM. Aug 29 '12 at 20:54

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.