How do we know whether an index is created on a table ???
Answers were Sorted based on User's Feedback
Answer / anithaletchumi
select index_name from dba_indexes where table_name=upper
('table_name');
dba_indexes -> This view has the description for all
indexes in the database.
| Is This Answer Correct ? | 6 Yes | 5 No |
Answer / urmi
select index_name from user_indexes u where u.TABLE_NAME=upper('table_name');
| Is This Answer Correct ? | 0 Yes | 0 No |
what is kernel?
What privilege is needed for a user to query tables in another schema?
Write query to fetch second maximum salary from employee table.
4 Answers Bravura Solutions, HCL,
What is a oracle database?
What are the advantages of Views ?
How to use values from other tables in update statements using oracle?
What is integrity and what is constraint??Explain with example
can you explain performance tunning in oracle(sql,PL/SQL)
what are the default admin accounts in Oracle 10g ?
How to empty your oracle recycle bin?
I have a table like this Table Name:Products Productid Price 1 10 1 10 2 20 3 30 3 30 But i want to output like this. productid price 2 20. please replay me.
17. Display the order number and average item cost for each order.