Which statement is true?
Answer(s)
- It is not necessary to physically separate tables from their indexes because Oracle accessesthe index first, then the table.
- Because Oracle accesses the table and its index concurrently, it is best to physicallyseparate the two.
- Hash partitioning divides the table into partitions based on a range of values for one of itscolumns.
- Creating striped tables with Oracle is impossible because Oracle always fills up the currentdata file before allocating space in another one.
Correct Answer It is not necessary to physically separate tables from their indexes because Oracle accessesthe index first, then the table.