Special Summer Sale 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: save70

Note! Following C2090-616 Exam is Retired now. Please select the alternative replacement for your Exam Certification.

Verified By IT Certified Experts

CertsTopics.com Certified Safe Files

Up-To-Date Exam Study Material

99.5% High Success Pass Rate

100% Accurate Answers

Instant Downloads

Exam Questions And Answers PDF

Try Demo Before You Buy

Certification Exams with Helpful Questions And Answers

DB2 11.1 Fundamentals for LUW Questions and Answers

Question 1

Which of the following statements about stored procedures is TRUE?

Options:

A.

Stored procedures can be written in SQL PL, but not in the PL/SQL dialect

B.

The CREATE SOURCED PROCEDURE statement defines a procedure that is based on another procedure in a federated database

C.

There are three types of stored procedures which can be deployed: SQL procedures, external procedures, and sourced procedures

D.

Two identically-named procedures within a schema are permitted to have exactly the same number of parameters, but the parameters must have different data types assigned

Buy Now
Question 2

The DDL statement is used to create table T1:

CREATE TABLEt1 (

c1 INTEGER,

c2 INTEGER NOT NULL,

c1 DECIMAL(11,2),

c4 TIMESTAMP WITH DEFAULT CURRENT TIMESTAMP

)

Which of the following INSERT statements will execute successfully?

Options:

A.

INSERT INTO t1 VALUES (100)

B.

INSERT INTO t1 (c1, c2) VALUES (100)

C.

INSERT INTO t1 (c1, c3) VALUES (‘100’, ‘100.00’)

D.

INSERT INTO t1 (c2, c3) VALUES (100, 100.00), (101, 101)

Question 3

What of the following is TRUE about triggers?

Options:

A.

Triggers are activated by INSERT, UPDATE, DELETE and SELECT statements

B.

Triggers can be used to perform data manipulation operations against complex views

C.

Triggers can only be used to execute logic before or after appropriate SQL statements

D.

Only one trigger for a particular event and activation time can be created for a particular table