Online Access Free 1Z0-147 Exam Questions
| Exam Code: | 1Z0-147 |
| Exam Name: | Oracle9i program with pl/sql |
| Certification Provider: | Oracle |
| Free Question Number: | 111 |
| Posted: | Sep 01, 2026 |
When creating a function in SQL *Plus, you receive this message:
"Warning: Function created with compilation errors."
Which command can you issue to see the actual error message?
A dependent procedure or function directly or indirectly references one or more of which four objects? (Choose four)
Examine this code
CREATE OR REPLACE PROCEDURE load bfile (p_flle_loc IN VARCHAR2)
IS
V_file BFILE;
V_filename VARCHAR2 (16);
CURSOR emp_cursor IS
SELECT employee_id
FROM employees
WHERE Job_id = 'IT_PROG'
FOR UPDATE;
BEGIN
FOR emp_record IN emp_cursor LOOP
V_filename:= emp_record.employee_id || '.GIF';
V_file := BFILENAME(p_flle_loc, v_filename);
END LOOP;
END;
/
What does the BFILENAME function do?