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

    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