To continue reading for free, register below or login
To read more you must become a member of SearchOracle.com
');
// -->

A stored procedure is an object in your schema. When you issue a CREATE PROCEDURE command, you are just creating the stored procedure, not executing it. To execute the stored procedure in SQL*Plus, you can issue the following:
exec stored_proc_name(param1,param2,...,paramN)
|