站内搜索
IBM(000-734) 问题列表
问题 单选题A database administrator wants to design a multi-partition database that can take advantage of both intra-partition parallelism and inter-partition parallelism. Which configuration will allow the use of these types of parallelism while using the least number of hardware components (servers, processors)? ()A one server having at least two processors  B two servers having one processor and one logical database partition  C one server having four processors and two logical database partitions  D two servers each having four processors and two logical database partitions

问题 单选题Table TAB1 was created using the following statement: CREATE TABLE tab1 (c1 INT, c2 INT, c3 INT, c4 INT, c5 INT); If column C1 is unique and queries typically access columns C1 and C2 together, which statement(s) will create index(es) that will provide optimal query performance? ()A  CREATE UNIQUE INDEX xtab1 ON tab1 (c1) include (c2)B  CREATE UNIQUE INDEX xtab1 ON tab1 (c1);  CREATE INDEX xtab2 ON tab1 (c3) INCLUDE (c2) C  CREATE UNIQUE INDEX xtab1 ON tab1 (c2, c1)D  CREATE UNIQUE INDEX xtab1 ON tab1 (c2) INCLUDE (c1)

问题 单选题If the ADD DBPARTITIONNUM command is used to add a new database partition to an existing DB2 instance,which statement is correct? ()A 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.  B Database partition groups within existing databases will automatically include the new database partition and willredistribute their existing data to the new partition.  C Any single partition databases within the instance will automatically become multi-partition databases once the newpartition is added to the instance.  D A database administrator would need to modify the db2nodes.cfg file to complete the addition of the new partition tothe instance.

问题 单选题A batch application executes a large number of update statements. The service level agreement for the application states that the application must complete its work as quickly as possible to ensure that dependent workloads can start ontime. What is one way to help the application complete quickly?()A Code the application to issue a LOCK TABLE statement.  B Code the application to issue a LOCK ROW statement.  C Decrease the number of I/O servers.  D Increase the locklist parameter. 

问题 单选题Which data organization schemes are supported?()A PARTITION BY HASH and ORGANIZE BY  B PARTITION BY RANGE and ORGANIZE BY KEY SEQUENCE  C PARTITION BY HASH and ORGANIZE BY KEY SEQUENCE D PARTITION BY RANGE and ORGANIZE BY

问题 单选题A database administrator would like to examine repartitioning options for a partitioned database named PRODDB. A workload has been captured on the system (Windows) and is stored in a file named WORKLOAD.SQL. What is the proper command to run the Design Advisor so that it will evaluate the information stored in the file and give advice on re-partitioning?()A db2advis -d proddb -i workload.sql -P  B db2advis -d proddb -i workload.sql -partitioning  C db2advis -d proddb -i workload.sql -m P  D db2advis -d proddb -i workload.sql -m ALL 

问题 单选题What would indicate intra-partition parallelism in an Optimizer Plan?()A BTQ  B LTQ  C IP  D DTQ

问题 单选题Which registry variable should be set to keep the buffer pools in memory on AIX and Linux?()A DB2_KEEP_BP  B DB2_PINNED_BP  C DB2MEMDISCLAIM  D DB2MEMMAXFREE

问题 多选题In which two environments would intra-partition parallelism be used? ()ASingle database partition, single processorBSingle database partition, multiple processorsCMultiple database partitions, single processorDMultiple database partitions, multiple processors

问题 多选题Given a SHEAPTHRES value of 2560, in which two cases will a SHEAPTHRES_SHR value of 1024 be meaningful?()AINTRA_PARALLEL NOBMAX_CONNECTIONS 2000, MAX_COORDAGENTS 100CMAX_AGENTS 100, MAX_CONNECTIONS 2000DMAX_CONNECTIONS 500, MAX_COORDAGENTS 1000EINTRA_PARALLEL YES

问题 单选题Table TAB1 was created using the following statement: CREATE TABLE tab1 (c1 INT, c2 INT, c3 INT, c4 INT, c5 INT); If column C1 is unique and queries typically access columns C1, C2 and C3 together, which statement(s) will createindex(es) that will provide optimal query performance?()A CREATE UNIQUE INDEX xtab1 ON tab1 (c1); CREATE INDEX xtab2 ON tab1 (c2) INCLUDE (c3)  B CREATE UNIQUE INDEX xtab1 ON tab1 (c1) INCLUDE (c2, c3) C CREATE UNIQUE INDEX xtab1 ON tab1 (c3, c2, c1)  D CREATE UNIQUE INDEX xtab1 ON tab1 (c2) INCLUDE (c1, c3)

问题 多选题When a database administrator chooses the dimensions for an MDC table, which two characteristics should beconsidered?()Athe query transaction rateBnumeric data versus character dataCextent sizeDthe cardinality of the candidate columnsEprefetch size

问题 单选题If the sort heap threshold parameter SHEAPTHRES_SHR is set to a value of 0, what will happen?()A All sorts will be done in a temporary table space.  B The shared sort memory allocation will be calculated by DB2C No shared memory is allocated for sorting.  D All sorts will be done in shared memory.

问题 单选题Which action(s) will cause a compression dictionary to be removed from a table?()A Set the table COMPRESS attribute to NO.  B Set the table COMPRESS attribute to NO; run REORG against the table.  C Set the table COMPRESS attribute to NO; run INSPECTRESETDICTIONARY against the table.  D Set the table COMPRESS attribute to NO; run RUNSTATS against the table.

问题 单选题When is the connection concentrator enabled?()A When the value of MAX_CONNECTIONS is greater than the value of MAX_COORDAGENTS.  B When the value of MAX_AGENTS is greater than the value of MAX_CLIENTS.  C When the value of NUM_AGENTS is greater than the value of MAX_AGENTS. D When the value of NUM_CONNECTIONS is greater than the value of NUM_COORDAGENTS.