Indexes interview questions and answers in Oracle sql.
What is index?
It is a separate database object which is associated with the table. It speeds up data retrieval by providing faster access path to the data. It acts like an index in the book. It allows the database to quickly locate and retrieve the fastest access path to the data. It allows the database to quickly locate and retrieve the rows based on the indexed columns.
Key features:
It is used for faster retrieval data. It allows the database to find the specific row in the database more quickly. It will return the small portion of the table rows.
How to create index?
What are the types of index?
Explain binary tree index?
Explain bitmap index?
Explain function-based index?
Explain reverse key index?
When to choose what type of index?
How to know index is being used?
How to monitor index usage?
What are the benefits and drawbacks of index?
Comments
Post a Comment