what are indexes..how many types of index's are there and
what are they?

Answer Posted / rudrab123

Answer 1 is not he basic function of Index in Oracle or any
databse.
Generally speaking,attaching index to a column in a table,
information of the location of the different values in the
indexed column is also provided.This address is like the
pointer varible in C,and in SQL it is called ROWID(a
pseudocolumn).Let us see he example ....

SQL>select * from students
where id=123;
Students is a databse table and ID is the column in the
table on which we create the index.

On execution of the above query, at first, the ROWID
corresponding to id=123 in students table is found.From
this rowid, the index value for the row of data which is
pointed to by ROWID is found(in very less time).And so the
row is idenified and the entire row data is displayed.
The above serach process is specifically called "TABLE
ACCESS FULL(USING ROWID)).

Is This Answer Correct ?    3 Yes 2 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What are the advantages of oracle?

554


What is a cursor and what are the steps need to be taken?

601


What are the extensions used by oracle reports?

575


How to run create database statement?

579


What is define in oracle?

571






How do I escape a reserved word in oracle?

631


Using the relations and the rules set out in the notes under each relation, write statements to create the two sequence generators specified in the notes.

1651


How to create a server parameter file?

571


How remove data files before opening a database?

566


How to list all user accounts in oracle?

614


What is oracle instant client?

566


nw i'm doing MBA system and planning to do oracle,database management.tell me that whether it is useful r not?.refer any course for my carrier pls

1745


What is rowid and rownum in oracle?

545


How to pass a cursor variable to a procedure?

562


What is a dead lock in oracle?

598