Hi Kevin Hannan,
I have check it with our internal team the issue you are facing of not able to create indexes with automatic tuning.
The indexes are not being created because all missing index recommendations retrieved from the Dynamic Management Views (DMVs) are currently considered insignificant. Specifically:
- The ClassificationScore for each recommended index is below the threshold of 33.
- As a result, these indexes are flagged with
IsRecommendationForPublish = False
. - The classification model used by the system is highly tuned to filter out low-impact recommendations to:
- Avoid unnecessary storage consumption.
- Maintain optimal query performance without over-indexing.
Until a recommendation’s ClassificationScore
exceeds 33, it will not be published or created automatically.
To resolve this, you can Manually evaluate the index recommendation and Create the index using T-SQL .