Google News
logo
PL/SQL - Interview Questions
How to execute a stored procedure?
There are two way to execute a stored procedure.
 
From the SQL prompt, write EXECUTE or EXEC followed by procedure_name.
 
EXECUTE or [EXEC] procedure_name;

Simply use the procedure name
 
procedure_name; 
Advertisement