An invisible index is an index that is ignored by the optimizer unless you explicitly set the
OPTIMIZER_USE_INVISIBLE_INDEXES
initialization parameter to TRUE
at the session or system level.To create an invisible index:
- Use the
CREATE INDEX
statement with theINVISIBLE
keyword.The following statement creates an invisible index namedemp_ename
for theename
column of theemp
table: