Oracle® Database PL/SQL Language Reference 11g Release 2 (11.2) Part Number E10472-02 |
|
|
View PDF |
The DROP
PROCEDURE
statement drops a standalone stored procedure from the database.
Note:
Do not use this statement to remove a procedure that is part of a package. Instead, either drop the entire package using the "DROP PACKAGE Statement", or redefine the package without the procedure using the "CREATE PACKAGE Statement" with theOR
REPLACE
clause.Topics:
Prerequisites
The procedure must be in your own schema or you must have the DROP
ANY
PROCEDURE
system privilege.
Syntax
drop_procedure::=
Semantics
schema
The name of the schema containing the procedure. The default is your own schema.
procedure
The name of the procedure to be dropped.
When you drop a procedure, the database invalidates any local objects that depend upon the dropped procedure. If you subsequently reference one of these objects, then the database tries to recompile the object and returns an error message if you have not re-created the dropped procedure.
Example
Dropping a Procedure: Example This statement drops the procedure remove_emp
owned by the user hr
and invalidates all objects that depend upon remove_emp
:
DROP PROCEDURE hr.remove_emp;
Related Topics