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
What do you mean by merge in oracle and how can you merge two tables?
What is merge in oracle?
How to experiment a data lock in oracle?
Explain the use of consistent option in exp command.
Please explain drop constraint oracle?
What is format trigger?
Give the constructs of a package, function or a procedure.
How translate command is different from replace?
What is a proxy class?
Write a syntax for update query in oracle?
How to assign data of the deleted row to variables?
What are the oracle differences between nvl and coalesce
List the parts of a database trigger.
How to loop through data rows in the implicit cursor?
How to return top 5 rows in oracle?