PrepAway - Latest Free Exam Questions & Answers

Category: C2090-730

Exam C2090-730: DB2 9 Family Fundamentals

How many of these INSERT statements will be successful?

Given the following DDL and INSERT statements:
CREATE VIEW v1 AS SELECT col1 FROM t1 WHERE col1 > 10;
CREATE VIEW v2 AS SELECT col1 FROM v1 WITH CASCADED CHECK OPTION;
CREATE VIEW v3 AS SELECT col1 FROM v2 WHERE col1 < 100;
INSERT INTO v1 VALUES(5);
INSERT INTO v2 VALUES(5);
INSERT INTO v3 VALUES(20);
INSERT INTO v3 VALUES(100);
How many of these INSERT statements will be successful?

Which of the following create index statements will meet this criteria and require the least amount of storage

Given the following DDL for the PARTS table:
CREATE TABLE parts
(part_no INT(9) NOT NULL,
part_name VARCHAR(24),
part_remain INT(9));
All part numbers entered will be different and all rows should be displayed in order of increasing
part numbers whenever the table is queried. Which of the following create index statements will
meet this criteria and require the least amount of storage for the index object?


Page 11 of 29« First...910111213...20...Last »