What is an Index ? How it is implemented in Oracle Database ?
Answers were Sorted based on User's Feedback
Answer / guest
Index is an Oracle SQL object which we create to speed up
the query performance.
It is created automatically on those columns which contains
primary key or unique key.
We can also create the index manually by using create index
command.
Max 16 indexes can be defined per table.
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / sawant
An index is a database structure used by the server to
have direct access of a row in a table.
An index is automatically created when a unique of primary
key constraint clause is specified in create table comman
(Ver 7.0)
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / ankur jain
An Index is nothing, it is something like the index behind in your text book, using index we can find any topic in our text book very fast,, hence database index is also like that, oracle engine uses this index to find any particular row quickly..
This is automatically created when you create the primary key during creation of table..
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / nishi
An index is a database structure used by the server to have direct access of a row in a table. An index is automatically created when a unique of primary key constraint clause is specified in create table comman (Ver 7.0)
| Is This Answer Correct ? | 0 Yes | 0 No |
What do you mean by a database transaction & what all tcl statements are available in oracle?
How to handle a single quote in oracle sql?
Explain an index?
What is ADDM Advisor in Oracle?
How to rename an index in oracle?
How can I convert single byte kana characters into multi byte kana characters and vice-versa.
What is a static data dictionary in oracle?
Can we create index on views?
19 Answers CTS, Syntel, TCS,
What is a table index in oracle?
sql command 2 know current database
What is set operator oracle?
How do you get nicely formatted results from an oracle procedure that returns a reference cursor?