Passing BLOB/CLOB as parameter to PL/SQL function
- by Ula Krukar
I have this procedure i my package:
PROCEDURE pr_export_blob(
p_name IN VARCHAR2,
p_blob IN BLOB,
p_part_size IN NUMBER);
I would like for parameter p_blob to be either BLOB or CLOB.
When I call this procedure with BLOB parameter, everything is fine. When I call it with CLOB…