Additional SQL Server features and topics not covered by specific categories
Hi @Royer, Diane M
Since you are interested in the index, have you identified the index fragmentation?
For queries that read many pages using full or range index scans, heavily fragmented indexes can degrade query performance when additional I/O is required to read the data.
Use sys.dm_db_index_physical_stats() to fetch more details like avg_fragmentation_in_percent.
Then you could reduce index fragmentation and increase page density by using the following methods: reorganize an index or rebuild an index.
See this doc for more details: Optimize index maintenance to improve query performance and reduce resource consumption.
Best regards,
Cosmog
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".