1 |
A standalone stored procedure has two parts
-
Specification - declare the procedure with the procedure name and its argument list (names and their databtypes)
-
Body - define the procedure with a PL/SQL block consists of SQL and PL/SQL statement
-
Both parts are created in one step using the CREATE PROCEDURE command
|