· Make the Non Clustered Index a Covering Index and include all columns referenced in the query in the index as INLCUDED columns:
· Include the filter column in the Clustered index key
· Populate the table with dummy records so that QO can pass the threshold, where it can use the Non Clustered Index on the filter column
· Use Plan Guides with the Index hint specifying the name of the NC index or with the FORCESEEK hint
· Make the Non Clustered Index a Unique index.
Maheshkumar S Tiwari edited Revision 5. Comment: Added tags