2 Day Developer > Using Procedures, Functions... > Managing Stored Procedures ... > Dropping a Procedure or Fun...
Dropping a Procedure or Function |
Previous |
Next |
You can drop a procedure or function from the database with the Object Browser page or the SQL DROP
statement.
To use the Object Browser page to drop procedures and functions:
Log in to the Database Home Page. See "Logging in to the Database Home Page". To run the examples in this guide, log in as user HR
with your password for the HR
account.
On the Database Home Page, click the Object Browser icon.
In the object list, select Procedures or Functions, then click the name of the procedure or function you want to drop.
Click the Drop button.
Click the Finish button to confirm the action.
To drop procedures or functions with SQL statements, use the SQL DROP
PROCEDURE
or DROP
FUNCTION
statement, as shown in Example: Dropping Subprograms With the DROP Statement.