Which of the following is TRUE about indexes on column organized tables?
Reveal answer details Close answer details
Correct answerA
IBM · C2090-616
Preview real exam questions, verified answers and available explanations before choosing a study plan.
|
Single choice
Which of the following is TRUE about indexes on column organized tables? Reveal answer details Close answer detailsCorrect answerA
Single choice
What type of function is created using the following command? CREATE FUNCTION TAN (X DOUBLE) RETURNS DOUBLE LANGUAGE SQL CONTAINS SQL NO EXTERNAL ACTION DETERMINISTIC RETURN SIN(X)/COS(X) Reveal answer details Close answer detailsCorrect answerC
Single choice
If the LOCKSIZE for a table is changed from TABLE to ROW, which of the following is TRUE? Reveal answer details Close answer detailsCorrect answerA
Single choice
Which three facilities are used to control authorization in DB2? Reveal answer details Close answer detailsCorrect answerD
Single choice
A portion of your database tables are used for OLTP-type processing and another portion are used for more analytical queries. There is a small subset of tables that are used in both of these usage patterns. What could you use to derive the analytic improvements offered by BLU technology in such an environment? Reveal answer details Close answer detailsCorrect answerA
Multiple choice
BLU Acceleration is included in which of the following edition of DB2 LUW? (Choose two.) Reveal answer details Close answer detailsCorrect answersB, C
Single choice
Which of the following statements about stored procedures is TRUE? Reveal answer details Close answer detailsCorrect answerB
Multiple choice
Which optional NPS compatibility features will be activated by executing the following? (Choose two.) SET SQL_COMPAT=`NPS' Reveal answer details Close answer detailsCorrect answersC, E
Single choice
Which locking event occurs when two applications lock rows that are needed by the other, such that neither application can continue executing? Reveal answer details Close answer detailsCorrect answerA
Single choice
Consider the following SQL statement: SELECT workdept, empno, lastname, salary, RANK() OVER (PARTITION BY workdept ORDER BY salary) AS rank_salary FROM employee ORDER BY workdept, lastname What does the RANK() OVER (PARTITION BY workdept ORDER BY salary) clause do? Reveal answer details Close answer detailsCorrect answerB |