Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: How to test procedure that has OUT params in SQLPlus?
ohaya wrote:
> Hi,
>
> I have created a procedure called decrypt_inmemory with following
> parameters:
>
> key IN varchar2, data IN varchar2, cleardata OUT varchar2
>
> I was wondering how I can test execute this procedure from within
> SQLPlus?
>
> How do I create a variable to receive the OUT parameter? And, how do I
> display this variable after I test-execute the procedure?
>
> Thanks,
> Jim
set serverout on -- Use this to enable dbms_output declare
your_out_var datatype; -- This is OUT variable datatype begin
your_proc(...,...,your_out_var);
dbms_output.put_line(your_out_var); -- This prints the result on the
screen
end;
/
It's all documented at http://tahiti.oracle.com
Regards
/Rauf
Received on Tue Jun 21 2005 - 09:27:59 CDT
![]() |
![]() |