sp_BlitzCache™ Result: Unmatched Indexes

There is a filtered index present on a table. SQL Server queried the table but was unable to use the filtered index due to parameterization. If the query were not parameterized, SQL Server would have been able to use the filtered index and dramatically reduce the query’s I/O.

How to Fix the Problem

Locate the queries where SQL Server is attempting to use the filtered index. It may require using techniques like dynamic SQL to coerce the query optimizer into picking the filtered index.

You can locate queries with unmatched indexes through the following query: