How many different types of indexes we have in oracle?

Answers were Sorted based on User's Feedback



How many different types of indexes we have in oracle?..

Answer / sathish

B TREE INDEX
FUNCTION BASED INDEX
REVERSE KEY INDEX
BIT MAP INDEX

Is This Answer Correct ?    1 Yes 0 No

How many different types of indexes we have in oracle?..

Answer / rohit

In Oracle there are two types of SQL index namely, implicit and explicit.
Implicit Indexes:
They are created when a column is explicity defined with PRIMARY KEY, UNIQUE KEY Constraint.
Explicit Indexes:
They are created using the "create index.. " syntax.
NOTE:
1) Even though sql indexes are created to access the rows in the table quickly, they slow down DML operations like INSERT, UPDATE, DELETE on the table, because the indexes and tables both are updated along when a DML operation is performed. So use indexes only on columns which are used to search the table frequently.
2) Is is not required to create indexes on table which have less data.
3) In oracle database you can define up to sixteen (16) columns in an INDEX.

Is This Answer Correct ?    1 Yes 0 No

How many different types of indexes we have in oracle?..

Answer / shankar

1.B-tree indexes:
B-tree indexes have the following subtypes:
Index-organized tables
Reverse key indexes
Descending indexes
B-tree cluster indexes
2.Bitmap and bitmap join indexes
3.Function-based indexes
4.Application domain indexes

Is This Answer Correct ?    0 Yes 0 No

How many different types of indexes we have in oracle?..

Answer / subrahmanayam

6

Is This Answer Correct ?    18 Yes 25 No

Post New Answer

More Oracle General Interview Questions

In my table i have 4 columns with 100 records but in that 4 columns one column contains all NULL values so can i add NOT NULL CONSTRAINT on that column......... ok if it is not possible, can i add NOT NULL CONSTRAINT from 101 Record Onwards?

4 Answers   Cap Gemini,


How a tablespace is related to data files?

0 Answers  


What is a lookup table in oracle?

0 Answers  


How to rename a column in an existing table?

0 Answers  


List out the difference between commit, rollback, and savepoint?

0 Answers  






Why do you use stored procedures and state some of its disadvantages?

0 Answers  


How to use null as conditions in oracle?

0 Answers  


how to produce numbers from 1 to 10 using dual table

4 Answers   Genpact,


Is it possible to enter only time value into a column of a table in sql?

2 Answers  


How to remove a row in a database table?

5 Answers   IBM,


SELECT * FROM (SELECT TITLE FROM MOVIE ORDER BY RANK DESC) WHERE ROWNUM > 4; when i run the above query .it produces output as NO ROWS SELECTED.why ?plz any one help me

6 Answers   TCS,


Can select statements be used on views in oracle?

0 Answers  


Categories
  • Oracle General Interview Questions Oracle General (1789)
  • Oracle DBA (Database Administration) Interview Questions Oracle DBA (Database Administration) (261)
  • Oracle Call Interface (OCI) Interview Questions Oracle Call Interface (OCI) (10)
  • Oracle Architecture Interview Questions Oracle Architecture (90)
  • Oracle Security Interview Questions Oracle Security (38)
  • Oracle Forms Reports Interview Questions Oracle Forms Reports (510)
  • Oracle Data Integrator (ODI) Interview Questions Oracle Data Integrator (ODI) (120)
  • Oracle ETL Interview Questions Oracle ETL (15)
  • Oracle RAC Interview Questions Oracle RAC (93)
  • Oracle D2K Interview Questions Oracle D2K (72)
  • Oracle AllOther Interview Questions Oracle AllOther (241)