I want to write a select statement to display the index_name, table_name, table_owner and uniqueness that exist in the data dictionary for the table user indexes. Any help would be great. My problem is I havent been able to find how to display an index_name, and table owner.
SELECT owner, table_name FROM dba_tables;
This gives most of it.
According to the docs, you can just do:
or
if you want all indexes…