PrepAway - Latest Free Exam Questions & Answers

Tag: Exam C2090-730

Exam C2090-730: DB2 9 Family Fundamentals

What value will be returned by the query?

A sequence was created with the DDL statement shown below:
CREATE SEQUENCE my_seq START WITH 10 INCREMENT BY 10 CACHE 10
User USER1 successfully executes the following statements in the order shown:
VALUES NEXT VALUE FOR my_seq INTO :hvar;
VALUES NEXT VALUE FOR my_seq INTO :hvar;
User USER2 successfully executes the following statements in the order shown:
ALTER SEQUENCE my_seq RESTART WITH 5 INCREMENT BY 5 CACHE 5;
VALUES NEXT VALUE FOR my_seq INTO :hvar;
After users USER1 and USER2 are finished, user USER3 executes the following query:
SELECT NEXT VALUE FOR my_seq FROM sysibm.sysdummy1
What value will be returned by the query?

How many new records will be written to the database?

Given the following statements:
CREATE TABLE t1 (c1 INTEGER, c2 CHAR(5));
CREATE TABLE t1audit (user VARCHAR(20), date DATE, action
VARCHAR(20));
CREATE TRIGGER trig1 AFTER INSERT ON t1
FOR EACH ROW
MODE DB2SQL
INSERT INTO t1audit VALUES (CURRENT USER, CURRENT DATE,
‘Insert’);
If user USER1 executes the following statements:
INSERT INTO t1 VALUES (1, ‘abc’);
INSERT INTO t1 (c1) VALUES (2);
UPDATE t1 SET c2 = ‘ghi’ WHERE c1 = 1;
How many new records will be written to the database?


Page 9 of 29« First...7891011...20...Last »