Hi,
I have a PL/SQL procedure of following structure
CREATE OR REPLACE PROCEDURE proc1(param1 IN VARCHAR2,param2 IN VARCHAR2)
IS
BEGIN
-----Statements goes here
END;
/
Can I call the procedure like this
execute proc1('ssk',)
ie without passing any value to the second pramater?
becos my requirement is that the param2 is optional
if I call the procedure like "execute proc1('ssk',)"
I get the error message..............
So can any one please tell me how to handle this situation.
Thanks in advance.
Regards,
Senthil