Oracle Full-Text Search – How to Get a List of CTXSYS.CONTEXT Indices

full-text-searchoracle

I can get a list of indices by querying USER_OBJECTS.

How can I distinguish which of these indices are of type CXTSYS.CONTEXT?

Best Answer

USER_INDEXES (and ALL_INDEXES) contains this information:

select index_name, table_name, index_type
from user_indexes
where ityp_owner = 'CTXSYS'
  and ityp_name = 'CONTEXT'