I am creating an index on Emp table Empno column,if u using
this indexed column in ur SELECT stmt. where clause,then how
do u know that yr index will be working or nor?
Thanks Advance...
Answers were Sorted based on User's Feedback
Answer / satish
Do the explain plan.if it is not using ur created index
then use hints to use ur created index
| Is This Answer Correct ? | 6 Yes | 0 No |
You execute your query like
explain plan for select sal from emp where empno='1224';
after that check this below one.
select * from table(dbms_xplan.display);
here u can find it'll be excuted by using index or TABLE ACCESS FULL
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / manoranjan sethy
by using SET AUTOTRACE ON EXPLAIN tool you can came to know weather such index is working or not.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is pl sql script?
Can we write dml inside a function in sql server?
what is the difference between char_length and length? : Sql dba
Is pl sql useful?
what is the difference between varray and table data type..please expalain with some examples... under what situation you will go for varray..instead of index by table...
How do you sort in sql?
i want run a sql query query? which phases are run in a back ground? pls tell me the answer
What is a Procedure ?
what is sql profiler? : Sql dba
Is it mandatory for the primary key to be given a value when a new record is inserted?
Can function return multiple values in sql?
What are hotfixes and patches?
Oracle (3259)
SQL Server (4518)
MS Access (429)
MySQL (1402)
Postgre (483)
Sybase (267)
DB Architecture (141)
DB Administration (291)
DB Development (113)
SQL PLSQL (3330)
MongoDB (502)
IBM Informix (50)
Neo4j (82)
InfluxDB (0)
Apache CouchDB (44)
Firebird (5)
Database Management (1411)
Databases AllOther (288)