InterviewSolution
Saved Bookmarks
| 1. |
What Is An Index ? How It Is Implemented In Oracle Database ? |
|
Answer» 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). 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). |
|