VistaDB 6
VistaDB / Developer's Guide / SQL Reference / Stored Procedures and User-Defined Functions / TSQL Proc Removal
TSQL Proc Removal

Removing a Stored Procedure

Once a stored procedure is created the TSQL code resides inside the VistaDB database. In order to remove the procedure it must be dropped from the database.

    
DROP PROCEDURE
Copy Code
DROP { PROC | PROCEDURE } { procedure }

Example

DROP PROCEDURE Sum;
See Also