top of page

How to select all indexes used in table in Oracle

  • Writer: Rumesh Aponso (RMAX)
    Rumesh Aponso (RMAX)
  • Nov 13, 2024
  • 1 min read
SELECT index_name 
FROM   all_indexes 
WHERE  table_name = 'your_table' 
AND    owner      = 'your_owner'

Comments


Copyright © 2025 RMAXOneNote

  • Online CV
  • LinkedIn
  • Youtube
  • GitHub
  • Blogger
bottom of page