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; In PL/SQL, you can execute a stored procedure using the EXECUTE statement or its shorthand notation EXEC. Here is the syntax: EXECUTE procedure_name(parameters); or EXEC … Read more