IBM C2090-600 IBM DB2 11.1 DBA for LUW Online Training
IBM C2090-600 Online Training
The questions for C2090-600 were last updated at Nov 19,2024.
- Exam Code: C2090-600
- Exam Name: IBM DB2 11.1 DBA for LUW
- Certification Provider: IBM
- Latest update: Nov 19,2024
Assuming no database connections exist, which of the following will dynamically change the LOCKLIST database configuration parameter for a database named SAMPLE to AUTOMATIC?
- A . UPDATE DB CFG FOR sample USING LOOCKLIST AUTOMATIC IMMEDIATE
- B . UPDATE DB CFG FOR sample USING LOOCKLIST 8192 AUTOMATIC IMMEDIATE
- C . CONNECT TO sample; UPDATE DB CFG FOR sample USINGLOCKLIST AUTOMATIC IMMEDIATE;CONNECT RESET;
- D . ATTACH TO db2inst1;UPDATE DB CFG FOR sample USING LOCKLIST AUTOMATIC;DETACH;
Which two tasks must be done to read data directly from IBM Softlayer Object Storage and insert it into a DB2 database? (Choose two.)
- A . Catalog a storage access alias in the DB2 database
- B . Create an FTP account on IBM Softlayer Object Storage
- C . Use the DB2REMOTE parameter of the LOAD command
- D . Establish a remote connection to IBM Softlayer Object Storage using DB2 Connect
- E . Create a local disk alias at the database server operating system level that points to IBM Softlayer Object Storage
Which of the following statements about compression for BLU MPP tables is TRUE?
- A . Compression must be explicitly enabled for BLU MPP tables
- B . Compression requires decompression to evaluate partition joins
- C . Unique compression dictionaries are generated for each partition
- D . Each table has a single compression dictionary that getsreplicated across all partitions
A production database has the following daily midnight backup schedule which includes all table spaces. The database incurs the same volume of daily activity (inserts, updates, and deletes).
Sunday C Delta
Monday C Incremental
Tuesday C Delta
Wednesday C Delta
Thursday C Incremental
Friday C Delta
Saturday C Full
Which day would you expect a RECOVER DATABASE following that day’s backup to take the longest time to complete?
- A . Friday
- B . Monday
- C . Saturday
- D . Wednesday
Which statement about NOT ENFORCED unique constraints is TRUE?
- A . NOT ENFORCED unique constraints can not be defined on primary key columns
- B . The query optimizer will consider a NOT ENFORCED unique constraint when selecting an optimal data access plan
- C . When attempting to insert data that does not conform to a NOT ENFORCED unique constraint, awarning will be returned
- D . Storage requirements for a NOT ENFORCED unique constraint are no different than the storage requirements for a similar unique index
What is an advantage of using range partitioned tables?
- A . Abilityto run utilities against the partitions in parallel
- B . Increased query performance through data partition elimination
- C . Block indexes are much smaller than RID indexes, providing better performance
- D . Table data is automatically and continuously clustered, requiring minimal reorganization
A table named MYTABLE contains an XML column and an XML storage object dictionary already exists.
What is the effect of enabling compression and then running the command REORG TABLE mytable KEEPDICTIONARY?
- A . All data, both new and existing, will becompressed.
- B . Only new or updated data for XML columns will be compressed.
- C . New and existing XML columns will be compressed but other columns remain unchanged.
- D . Existing data will remain uncompressed because the RESETDICTIONARY option of the REORG command was not used.
The DBA has observed that queries executed against SALES table have poor performance. SALES is a compressed table and recently there have been a lot of rows inserted and modified in that table. The DBA has detected that lower performance may be the result of sub-optimal compression dictionary for that table.
Which of the following commands should be used to resolve the problem without preventing users from changing data in the SALES table
- A . REORG TABLE sales INPLACE RESETDICTIONARY
- B . REORG TABLE sales INPLACE REBUILDDICTIONARY
- C . REORG TABLE sales ALLOW WRITE ACCESS RESETDICTIONARY
- D . REORG TABLE sales ALLOW WRITE ACCESS REBUILDDICTIONARY
If the following SQL statements are executed:
CREATE DATABASE testdb AUTOMATIC STORAGE NO;
CONNECT TO testdb;
CREATE STOGROUP sg1 ON ‘/data1’;
CREATE STOGROUP ibmstogroup ON ‘/data2’;
CREATE STOGROUP sg2 ON ‘/data3’;
Which storage group is the default storage group for the TESTDB database?
- A . SG1
- B . SG2
- C . IBMSTOGROUP
- D . IBMDEFAULTTSG
If Secure Sockets Layer is a requirement, which of the following parameters must be set to encrypt data in transit?
- A . Set the DB2COMM registry variable to DB2COMM=SSL
- B . Set the DB2COMM registry variable to DB2COMM=SSL, TCPIP
- C . Set the AUTHENTICATION configuration parameter to DATA_ENCRYPT
- D . Set the AUTHENTICATION configuration parameter to SERVER_ENCRYPT