Make index invisible
SQL> select VISIBILITY from dba_indexes where index_name='IDX_SESS' and owner='DBACLASS'; VISIBILIT --------- VISIBLE
oracle configurationintermediate
by OracleDba
12 views
SQL> select VISIBILITY from dba_indexes where index_name='IDX_SESS' and owner='DBACLASS'; VISIBILIT --------- VISIBLE
1234567891011121314151617
SQL>
select VISIBILITY from dba_indexes where index_name='IDX_SESS' and owner='DBACLASS';
VISIBILIT
---------
VISIBLE
SQL>
ALTER INDEX DBACLASS.IDX_SESS INVISIBLE;
Index altered.
SQL>
select VISIBILITY from dba_indexes where index_name='IDX_SESS' and owner='DBACLASS';
VISIBILIT
---------
INVISIBLE
-- Revert again to visible.
SQL>
ALTER INDEX DBACLASS.IDX_SESS VISIBLE;
Index altered.Please to add comments
No comments yet. Be the first to comment!