Tagged: Unused Indexes SQL Server

Detecting Unused Indexes in SQL Server

Hello everyone, In this article, I will try to give information about detecting unused Indexes in SQL Server. In SQL Server, in some cases, you may want to detect unused Indexes. You can easily do this using the code below. SELECT o.name AS ObjectName, i.name AS IndexName, i.index_id AS IndexID,...

Don`t copy text!