1Z0-144 Exam Question 1
You create a procedure to handle the processing of bank current accounts which rolls back payment transactions if the overdraft limit is exceeded.
The procedure should return an "error" condition to the caller in a manner consistent with other Oracle server errors.
Which construct should be used to handle this requirement?
The procedure should return an "error" condition to the caller in a manner consistent with other Oracle server errors.
Which construct should be used to handle this requirement?
1Z0-144 Exam Question 2
Identify the scenario in which you would use the current of clause for an update or delete statement to rows fetched from a cursor.
1Z0-144 Exam Question 3
View the Exhibit and examine the structure of the departments table in SCOTT's schema.

Examine the following block of code:
CREATE OR REPLACE PROCEDURE add_dept(
p_id NUMBER, p_name VARCHAR2) IS
BEGIN
INSERT INTO departments VALUES <p_id, p_name, NULL, NULL);
END;
/
The above procedure is created by user SCOTT. Another user JONES needs to use the
procedure.
Which two statements are true in the above scenario? (Choose two.)

Examine the following block of code:
CREATE OR REPLACE PROCEDURE add_dept(
p_id NUMBER, p_name VARCHAR2) IS
BEGIN
INSERT INTO departments VALUES <p_id, p_name, NULL, NULL);
END;
/
The above procedure is created by user SCOTT. Another user JONES needs to use the
procedure.
Which two statements are true in the above scenario? (Choose two.)
1Z0-144 Exam Question 4
View Exhibit 1 and examine the structure of the employees table.

View Exhibit 2 and examine the code.

What is the outcome when the code is executed?

View Exhibit 2 and examine the code.

What is the outcome when the code is executed?
1Z0-144 Exam Question 5
View the Exhibit to examine the PL/SQL code:

SREVROUPUT is on for the session. Which statement Is true about the output of the PL/SQL block?

SREVROUPUT is on for the session. Which statement Is true about the output of the PL/SQL block?