InterviewSolution
| 1. |
What Is The Purpose Of A Cluster? |
|
Answer» Oracle does not ALLOW a USER to specifically locate tables, since that is a part of the function of the RDBMS. HOWEVER, for the purpose of increasing performance, oracle allows a developer to create a CLUSTER. A CLUSTER provides a means for storing data from different tables together for FASTER retrieval than if the table PLACEMENT were left to the RDBMS. Oracle does not allow a user to specifically locate tables, since that is a part of the function of the RDBMS. However, for the purpose of increasing performance, oracle allows a developer to create a CLUSTER. A CLUSTER provides a means for storing data from different tables together for faster retrieval than if the table placement were left to the RDBMS. |
|