IBM DB2 9 Family Fundamentals - 000-730 Exam Practice Test

Question 1
Which of the following statements allows BOB to revoke access to the SAMPLE database from user TOM?

Correct Answer: A
Question 2
What type of constraint can be used to ensure that, in any given row in a table, the value of one column never exceeds the value of another column?

Correct Answer: B
Question 3
Given the following table:
CURRENT_EMPLOYEES
EMPID INTEGER NOT NULL NAME CHAR(20) SALARY DECIMAL(10,2) PAST_EMPLOYEES
EMPID INTEGER NOT NULL
NAME CHAR(20)
SALARY DECIMAL(10,2)
Assuming both tables contain data, which of the following statements will NOT successfully add
data to table CURRENT_EMPLOYEES?

Correct Answer: B
Question 4
A table called DEPARTMENT has the following columns: DEPT_ID DEPT_NAME MANAGER Which of the following statements will ONLY allow user USER1 to modify the DEPT_NAME column?

Correct Answer: C
Question 5
Which of the following CREATE TABLE statements will NOT be successful?

Correct Answer: C
Question 6
An alias can be an alternate name for which two of the following DB2 objects?

Correct Answer: D,E
Question 7
Which type of key is defined on the child table to implement a referential constraint?

Correct Answer: C
Question 8
Which of the following database objects can be used to raise an error if a table is updated?

Correct Answer: A
Question 9
Which of the following is a valid DB2 data type?

Correct Answer: C
Question 10
Which of the following isolation levels will lock all rows scanned to build a result data set?

Correct Answer: C
Question 11
Which of the following describes how DB2 9 stores an XML document if the XML Extender is not used?

Correct Answer: C
Question 12
Which of the following can NOT be used to restrict specific values from being inserted into a column in a particular table?

Correct Answer: A
Question 13
Given the following two tables:
NAMES
NAME NUMBER
Wayne Gretzky 99 Jaromir Jagr 68 Bobby Orr 4 Bobby Hull 23 Brett Hull 16 Mario Lemieux 66 Mark Messier 11
POINTS
NAME POINTS
Wayne Gretzky 244 Jaromir Jagr 168 Bobby Orr 129 Brett Hull 121 Mario Lemieux 189 Joe Sakic 94
Which of the following statements will display the player name, number, and points for all players that have scored points?

Correct Answer: A