Oracle finds tablename with index name

I have an index name that exists in some table in some column in db (oracle 11g). Knowing the name of the index, how can I find which table it belongs to?

+5
source share
1 answer
SELECT table_name
FROM all_indexes
WHERE index_name = 'YOUR_INDEX'
+13
source

All Articles