how to get the index id?

Answer Posted / su

we can use USER_INDEXES or DBA_INDEXES
sql> desc user_indexes
index_name
index_type
table_owner
table_name
table_type
and plenty of other columns

sql>SELECT index_name
FROM user_indexes
WHERE table_name = 'EMP';
will give us the index_name, which is how we identify an
index

:) hope this helps

Is This Answer Correct ?    0 Yes 3 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

List out the types of joins.

595


How to load excel data sheet to oracle database

588


What is the dynamic sql in oracle?

603


How to export data with a field delimiter?

582


What is the difference between a hot backup and a cold backup in oracle?

577






For a field in a repeating frame, can the source come from the column which does not exist in the data group which forms the base for the frame ?

1558


How to calculate date and time differences in oracle?

535


How to get the Installed Oracle Version Information ?

626


Write a syntax for update query in oracle?

622


what is the difference between functional dependecy and multilevel dependency?

1994


How would you configure your networking files to connect to a database by the name of DSS which resides in domain icallinc.com?

1474


Why do we need oracle client?

511


A table t is there.If you perform insert ,update and delete then the trigger will fire.What is the minimum no of trigger required for a table.

4272


How to export your own schema?

572


1) Does oracle have any table which contain all the exceptions and it's code internally?

1282