Modify and delete stored procedures
- Last Updated: February 11, 2026
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
To modify a procedure, you must drop and re-create it.
To re-create the procedure, you need the original source of the CREATE PROCEDURE statement.
Query system tables to extract the source of the CREATE
PROCEDURE statement to a file.
The SQL DROP PROCEDURE statement deletes stored procedures
from the database. Exercise care in dropping procedures, since any procedure
that calls the dropped procedure will raise an error condition when the
now nonexistent stored procedure is invoked.