Index [message #372698] |
Sat, 03 March 2001 11:30 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
Sunand
Messages: 1 Registered: March 2001
|
Junior Member |
|
|
What is index and how can it be used
|
|
|
Re: Index [message #372699 is a reply to message #372698] |
Sat, 03 March 2001 11:55 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
ramu
Messages: 82 Registered: February 2001
|
Member |
|
|
Hi,
Index is created for accessing the data very quickly from the database..
For your information refer the books..
One more thing is there that is how can you enable an Index for a table only for a certain time?
We can disable the Index by the giving <> operator on the indexed column..
For example, if you created an index for empno on emptable then you can disable the index by the following query(only for that query)
SELECT *FROM EMP WHERE EMPNO<>10;
Now the index which was created for the column will not work for this query only..
For more details study the guide and materials.
Thanks..
Ramu..
|
|
|