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 can I create database in oracle?
How to select some rows from a table in oracle?
What is the data type of dual table?
When do you get a .pll extension in oracle? Explain its importance
How to start a specific oracle instance?
What is Reduced List of Values?
Why do we need integrity constraints in a database?
How to define a sub function?
How to define a variable to match a table column data type?
how to clone 9i Database on to 10g Database.
What is background process in Oracle?
src name sex a,male b,female c,male d,female Required output : male female a,b c,d tried pivot but was not successfull select * from src pivot (max(name) for sex in ('MALE','FEMALE'));
How many categories of data types in oracle?
What is the use of oracle?
What is not equal to in oracle?