INDICES POR TIPO:
Es sumamente importante contar con esta información, para poder verificar que tipos de indices tenemos.
select index_type "Index Type",
count(*) "Index Count"
from sys.dba_indexes
group by index_type
order by index_type
thank you !
ResponderEliminar