Executing an External Procedure
To run an external procedure, you must call the PL/SQL program unit (that is, the alias for the external function) that registered the external procedure.
These calls can appear in any of the following:
-
Anonymous blocks
-
Standalone and packaged subprograms
-
Methods of an object type
-
Database triggers
-
SQL statements (calls to packaged functions only)
In “Registering an External Procedure”, PL/SQL function PLS_MAX
registered external procedure find_max
. Follow these steps to run find_max
:
Related Topics
Parent topic: About Building External Procedures