RelationalDBDesign
SiteMap
Database Analysis
Database Design
Extended DB Features
Oracle SQL Extensions
Clustering Tables
«Prev
Next»
Extended Features
Partitioned Tables
Oracle Partitioning Explained
Partitioning Advantages
Table Range Partitioning
Index Partitioned Table
Local Index Partition
Global Index Partition
Modifying Partition Features
Dropping Oracle Partitions
Splitting Merging Partitions
Clustering Tables
Clustered Tables Advantages
Clustered vs Non-Clustered
Oracle Clustering Advantages
Creating Oracle Cluster
Size Cluster Properly
Creating Cluster Key
Oracle Hash Cluster
Creating Hash Cluster
Deleting Hash Cluster
Clustering Conclusion
Index Organized
Index Organized Tables
Advantages Disadvantages IOT
Creating Table Index
Allocate Overflow Space
Deleting Altering IOT
Reorganize IOT
IOT Conclusion
Auditing Features
Auditing Oracle Entities
Enable Audit Feature
Audit SQL Statement
Access Audit Trail
Oracle System Privileges
Auditing Database Objects
Purge Audit Trail
Language Support
National Character Set
Using Profiles
Product Profile
Profile Table
Limit Command Access
Security Scheme
SQL WildCards
SQL Wildcard Characters
Removing Restriction
Target Profile
SqlPlus Utility
Hash Clusters and Droppings Clusters - Quiz
Each question is worth one point. Select the best answer or answers for each question.
1.
Which of the following is not a difference between a standard cluster and a hash cluster?
Please select the best answer.
A.
The standard cluster includes the cluster key value in the data blocks.
B.
A hash cluster preallocates all the space for the cluster when the cluster is created, while a standard cluster does not.
C.
The index for a standard cluster contains an entry for each row, while the index for the hash cluster contains a single entry for each value of the hash cluster.
D.
A hash cluster must have only numeric values in its cluster key, while a standard cluster does not.
2.
How does Oracle determine how much space to allocate for a hash cluster?
Please select the best answer.
A.
Multiplies the SIZE of the cluster by the number of unique values for the cluster key
B.
Multiplies the SIZE of the cluster by the number of unique values that the hash function can return
C.
Multiplies the SIZE of the cluster by the value of the HASHKEYS parameter
D.
It doesn't. It dynamically allocates space for the cluster.
3.
Which of the following syntax options for dropping a cluster are required in which circumstances?
Please select all the correct answers.
A.
The DROP CLUSTER keywords, in all circumstances
B.
The CASCADE CONSTRAINTS keywords, if the cluster contains tables
C.
The INCLUDING TABLES keywords, in all circumstances
D.
The INCLUDING TABLES keywords, if the cluster contains tables