Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Determining Column name involve in Functional Index

malhiNov 16 2011 — edited Nov 16 2011
I write this query to know about the existing indexes of all tables pertains to a schema. My problem is when index is functional one, column name is not descriptive, it is like SYS_NC00047$, ..... as yet i could not find the way to know exact column name in the out put of this query. your help is required..
 SELECT index_owner,
         index_name,
         table_owner,
         table_name,
         column_name,
         column_position,
         column_length
    FROM dba_ind_columns
   WHERE index_owner = 'CORE_BUSINESS'
ORDER BY table_name               ;
This post has been answered by Hemant K Chitale on Nov 16 2011
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Dec 14 2011
Added on Nov 16 2011
3 comments
602 views