How to Find Missing Indexes in SQL Server

indexsql serversql-server-2008

tool available to find missing indexes in mssql 2008 ? can we find the missing index using Database Engine Tuning Advisor

Best Answer

SQL Server renders a handful of DVMs that can provide you with this information. See the TechNet reference on About the Missing Indexes Feature.

Mainly, you will be dealing with four DMVs:

Note: This is how you do it. But be very careful when considering "missing indexes". You could end up with a large amount of indexes and data manipulation will take a hit from that. This does not replace prudent index consideration/creation.