how to get the index id?
Answer / 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 |
Explain overloading. Can functions be overloaded?
query optmization techniques and quwry analyser+projects+ppts
What is the effect of setting the value 'FIRST_ROWS' for OPTIMIZER_GOAL parameter of the ALTER SESSION command ?
i can't insert column value greater than 4000 characters at one instance even i am using CLOB datatype . how to insert efficiently more than 4000 characters ? And please let me know how to impose inline and out-of line constraints on oracle column??? Thanks in Advance... Prakash
How to invoke the data pump export utility?
What is Java Pool in Oracle?
what is the difference between UNION AND UNIONALL
What is system tablespace?
How to start a specific oracle instance?
How to connect to a remote server?
What different of iner joint & outer joint with example
How can we delete duplicate rows in a table?