How do we know whether an index is created on a table ???
Answer Posted / urmi
select index_name from user_indexes u where u.TABLE_NAME=upper('table_name');
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Can we use bind variables in oracle stored procedure?
How to insert a new row into a table in oracle?
Explain about the analyze command in oracle?
How to create a stored function in oracle?
How to drop a stored procedure in oracle?
What happens if the imported table already exists?
Explain the use of rows option in exp command.
How do I escape a reserved word in oracle?
What is an oracle database?
What are temporal data types in oracle?
Explain parameter file in oracle.
How can I introduce multiple conditions in like operator?
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 to define a sub function?
How to get execution statistics reports on query statements?