Hay situaciones en las que la redundancia no se cumple. Por ejemplo, diga ColumnC
Era un campo enorme, pero a veces había que recuperarlo rápidamente. Su index 1
no requeriría una búsqueda clave para:
select ColumnC from YourTable where ColumnnA = 12
Por otro lado index 2
es mucho más pequeño, por lo que se puede leer en la memoria para consultas que requieren un escaneo de índice:
select * from YourTable where ColumnnA like '%hello%'
Así que no son realmente redundantes.
Si no está convencido de mi argumento anterior, puede encontrar índices "redundantes" como:
;with ind as (
select a.object_id
, a.index_id
, cast(col_list.list as varchar(max)) as list
from (
select distinct object_id
, index_id
from sys.index_columns
) a
cross apply
(
select cast(column_id as varchar(16)) + ',' as [text()]
from sys.index_columns b
where a.object_id = b.object_id
and a.index_id = b.index_id
for xml path(''), type
) col_list (list)
)
select object_name(a.object_id) as TableName
, asi.name as FatherIndex
, bsi.name as RedundantIndex
from ind a
join sys.sysindexes asi
on asi.id = a.object_id
and asi.indid = a.index_id
join ind b
on a.object_id = b.object_id
and a.object_id = b.object_id
and len(a.list) > len(b.list)
and left(a.list, LEN(b.list)) = b.list
join sys.sysindexes bsi
on bsi.id = b.object_id
and bsi.indid = b.index_id
Traiga pastel para sus usuarios en caso de que el rendimiento disminuya "inesperadamente" :-)