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 |
Will the Optimizer always use COST-based approach if OPTIMIZER_MODE is set to "Cost"?
What is a cursor variable?
In AP we done Customizations for Late Payments Charges. For Reporting Purpose What are the Documents Prepared for Customer Understanding??
Is oracle an open source?
What are inner join and outer join?
What are the different types of trigger and explain its various uses and functions?
can you explain performance tunning in oracle(sql,PL/SQL)
what is integrity constrains?
What do you mean by cdb and pdb in oracle 12c?
How to define an oracle cursor variable?
What is oracle sid?
SELECT * FROM (SELECT TITLE FROM MOVIE ORDER BY RANK DESC) WHERE ROWNUM > 4; when i run the above query .it produces output as NO ROWS SELECTED.why ?plz any one help me