HOWTO View Tables and Indexes in an Oracle Database

To view the user tables.

select * from tab;

To view the user indexes.

select index_name, table_name from user_indexes;

Leave a Reply

Your email address will not be published. Required fields are marked *