Hi I was wondering if anyone could help...
I'm trying to execute a stored procdure from within an anonymous pl/sql block.. something like
Declare
var1 NUMBER;
BEGIN
execute test_procedure ('param1', 'param2');
END;
but I get the a pl/sql error "expecting symbol :=, ...."
Is it possible to execute the procedure from within the pl/sql block and if so any ideas on what I'm doing wrong?
Thanks for your time,
Jimmy
I'm trying to execute a stored procdure from within an anonymous pl/sql block.. something like
Declare
var1 NUMBER;
BEGIN
execute test_procedure ('param1', 'param2');
END;
but I get the a pl/sql error "expecting symbol :=, ...."
Is it possible to execute the procedure from within the pl/sql block and if so any ideas on what I'm doing wrong?
Thanks for your time,
Jimmy