PARTITION BY HASH and ORGANIZE BY
PARTITION BY RANGE and ORGANIZE BY KEY SEQUENCE
PARTITION BY HASH and ORGANIZE BY KEY SEQUENCE
PARTITION BY RANGE and ORGANIZE BY
第1题:
Which data organization schemes are supported?()
第2题:
Which is a restriction on a list partitioned table?()
第3题:
Which of the following explains the relationship between a physical and logical partition?()
第4题:
In which cases is reference partitioning effective in enhancing performance?()
第5题:
Consider the following statement on a RANGE partitioned table: ALTER TABLE orders DROP PARTITION p1, p3; What is the outcome of executing the above statement?()
第6题:
It is effective only in partition pruning.
It is effective only in partitionwise joins provided that the query predicates are different from the partitioning key.
It is effective in both partition pruning as well as partitionwise joins provided that the query predicates are identical to the partitioning key.
It is effective in both partition pruning as well as partitionwise joins irrespective of whether the query predicates are different from or identical to the partitioning key.
第7题:
It is effective only in partition pruning.
It is effective only in partitionwise joins provided that the query predicates are different from the partitioning key.
It is effective in both partition pruning as well as partitionwise joins provided that the query predicates are identical to the partitioning key.
It is effective in both partition pruning as well as partitionwise joins irrespective of whether the query predicates are different from or identical to the partitioning key.
第8题:
PARTITION BY HASH and ORGANIZE BY
PARTITION BY RANGE and ORGANIZE BY KEY SEQUENCE
PARTITION BY HASH and ORGANIZE BY KEY SEQUENCE
PARTITION BY RANGE and ORGANIZE BY
第9题:
It executes successfully but partition pruning cannot happen for this partition key.
It produces an error because the TOTAL_VALUE column cannot be used as a partition key.
It produces an error because compression cannot be used for the TOTAL_VALUE partition key.
It executes successfully but the values in the TOTAL_VALUE column would not be physically stored in the partitions.
第10题:
Connect to the network,power on the server,Micro-Partition the server
Connect to the HMC,power on the server,Micro-Partition the server,connect to the network
Power on server,connect to the network,Micro-Partition the server,connect to the HMC
Power on the server,connect to the HMC,Micro-Partition the server,connect to the network
第11题:
All existing databases in the instance are expanded to the new database partition but data cannot be stored on the newpartition until it has been added to a partition group.
Database partition groups within existing databases will automatically include the new database partition and willredistribute their existing data to the new partition.
Any single partition databases within the instance will automatically become multi-partition databases once the newpartition is added to the instance.
A database administrator would need to modify the db2nodes.cfg file to complete the addition of the new partition tothe instance.
第12题:
Set DYNAMIC_SAMPLING to level 4
Set the STATISTICS_LEVEL parameter to BASIC
Set the INCREMENTAL value to TRUE for the partition table
Increase the value of STALE_PERCENT for the partition table
第13题:
You need to create a partitioned table to store historical data and you issued the following command: CREATE TABLE purchase_interval PARTITION BY RANGE (time_id) INTERVAL (NUMTOYMINTERVAL(1,’month’)) STORE IN (tbs1,tbs2,tbs3) ( PARTITION p1 VALUES LESS THAN(TO_DATE(’1-1-2005’, ’dd-mm-yyyy’)), PARTITION p2 VALUES LESS THAN(TO_DATE(’1-1- 2007’, ’dd-mm-yyyy’))) AS SELECT * FROM purchases WHERE time_id < TO_DATE(’1-1-2007’,’dd-mm-yyyy’); What is the outcome of the above command?()
第14题:
After purchasing the Active Memory Expansion (AME) Enablement Feature,what tasks must be completed before AME can be used?()
第15题:
If the ADD DBPARTITIONNUM command is used to add a new database partition to an existing DB2 instance,which statement is correct? ()
第16题:
Which statements are true regarding system-partitioned tables?()
第17题:
Evaluate the following SQL statement used to create the PRODUCTS table: CREATE TABLE products (product_id NUMBER(3) PRIMARY KEY, product_desc VARCHAR2(25), qtyNUMBER(8,2), rate NUMBER(10,2), total_value AS ( qty * rate)) PARTITION BY RANGE (total_value) (PARTITION p1 VALUES LESS THAN (100000), PARTITION p2 VALUES LESS THAN (150000), PARTITION p3 VALUES LESS THAN (MAXVALUE)) COMPRESS FOR ALL OPERATIONS; Which statement is true regarding this command?()
第18题:
Partition one starts and has 3.0 logical processors. Partition two does not start. Partition three has 1.0 logical processors.
Partition one starts and has 1.5 logical processors. Partition two has 1.0 logical processors. Partition three has 0.1 processors.
Partition one starts and has 2.0 logical processors. Partition two start and has 2.0 logical processors. Partition three does not start.
Partition one starts and has 2.0 logical processors. Partition two has 1.0 logical processors. Partition three has 0.1 logical processors.
第19题:
A physical partition is hosted on one or more logical partitions. A logical partition is used when describing storage.
A logical partition is hosted on one or more physical partitions. A physical partition is used when describing storage.
A physical partition is used when describing only a SCSI or SAS disk. A logical partition is used when describing a SAN LUN.
A logical partition is used when describing only a SATA or SAS disk. A physical partition is used when describing RAID or mirrored arrays.
第20题:
Enable using active partition properties with DLPAR
Enter the activation key via the AIX 6.1 command line and reboot AIX
Enter the activation key via the HMC,power cycle the managed system and start the LPAR
Enter the activation key via the HMC,modify the partition profile and restart the LPAR
第21题:
A syntax error will result as you cannot specify more than one partition in the same statement
All data in p1 and p3 partitions are removed and the table definition is changed
All data in p1 and p3 partitions are removed, but the table definition remains unchanged
Only the first partition (p1) will be dropped as only one can be dropped at any time
第22题:
It returns an error because the range partitions P1 and P2 should be of the same range.
It creates two range partitions (P1, P2). Within each range partition, it creates monthwise subpartitions.
It creates two range partitions of varying range. For data beyond ’1-1-2007,’ it creates partitions with a width of one month each.
It returns an error because the number of tablespaces (TBS1,TBS2,TBS3)specified does not match the number of range partitions (P1,P2) specified.
第23题:
Only a single partitioning key column can be specified.
All DML statements must use partition-extended syntax.
The same physical attributes must be specified for each partition.
Unique local indexes cannot be created on a system-partitioned table.
Traditional partition pruning and partitionwise joins are not supported on these tables.
第24题:
You cannot create global range partitioned indexes on the table.
The optimizer will not execute partition wise joins on the table’s partitions.
You must include at least one element in the value list of each partition of the table, even if that element is the keyword NULL.
Partition pruning will not occur during query optimizer if a range of values is included in the query predicate.