PL/SQL Exception

PL/SQL Exception

PL/SQL Interview Questions

PL/SQL Interview Questions and Answers


PL/SQL Drop Procedure

In PL/SQL a standalone procedure can be deleted with the DROP PROCEDURE statement.

PL/SQL Drop Procedure Syntax

To delete an existing procedure, use the following syntax:

Syntax

Where:

procedure_name: The name of the procedure.

PL/SQL Drop Procedure example

The following PL/SQL show how to delete existing procedure:

Example