Relation Names
Indexing
Standard Physical Design
Defines the following for each relation name
- Primary index for
materializing its extension as a concrete data structure - Zero or more secondary indices for
materializing projections of the primary index for as concrete data structures
→ Materialization of a relation adds an additional record identifier (RID) attribute to the relation
→ Secondary Indices usually include the RID attribute of the primary index in their projection of
Index Scan
- Condition supplies search values for the underlying data structure
Assuming
Primary Indices
Btree index PROF-PRIMARY on pnum
Secondary Indices
Btree index PROF-SECONDARY on lname