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
how to use select statement as formal parameter in procedure specification?(someone said that using string) ex:-procedure(a in number,select ename from emp ) i am asking syntax like this?
How can we force the database to use the user specified rollback segment?
How to get last row id?
What is using clause and give example?
What is proxy method?
Explain overloading. Can functions be overloaded?
Which is better Oracle or MS SQL? Why?
what are archived logs?
How index is implemented in oracle database?
How to check database size in Oracle?
What is null value in oracle?
How to increment dates by 1 in oracle?
How can I see all tables in oracle?
How to create id with auto_increment on oracle?
How can I introduce multiple conditions in like operator?