Search for indexes created by anyone other than the table owner. : dba_indexes « System Tables Data Dictionary « Oracle PL/SQL Tutorial






SQL> select
  2        Owner,                /*Owner of the index*/
  3        Index_Name,           /*Name of the index*/
  4        Table_Owner,          /*Owner of the table*/
  5        Table_Name            /*Name of the indexed table*/
  6  from DBA_INDEXES
  7  where Owner != Table_Owner and rownum < 10;
SQL>
SQL>








30.33.dba_indexes
30.33.1.Union dba_indexes and dba_tables
30.33.2.Search for indexes created by anyone other than the table owner.