| Exam Code/Number: | 000-730Join the discussion |
| Exam Name: | DB2 9 Family Fundamentals |
| Certification: | IBM |
| Question Number: | 303 |
| Publish Date: | May 24, 2026 |
|
Rating
100%
|
|
Which of the following statements is used to prevent user TOM from adding and deleting data in table TAB1?
Given the following statements:
CREATE TABLE table1 (col1 INTEGER, col2 CHAR(3)); CREATE VIEW view1 AS
SELECT col1, col2 FROM table1 WHERE col1 < 100 WITH LOCAL CHECK OPTION;
Which of the following INSERT statements will execute successfully?
Which of the following DB2 data types can NOT be used to create an identity column?
Which of the following can be used to ensure that once a row has been inserted in table TABLEX, the column MAINID in that row cannot be updated?
What does the following statement do? GRANT ALTER ON SEQUENCE gen_empid TO user1 WITH GRANT OPTION