Deleting a SQL Server stored procedure


By:
Overview

In addition to creating stored procedures there is also the need to delete stored procedures.  This topic shows you how you can delete stored procedures that are no longer needed.

Explanation

The syntax is very straightforward to drop a stored procedure, here are some examples.

Dropping Single Stored Procedure

To drop a single stored procedure you use the DROP PROCEDURE or DROP PROC command as follows.

DROP PROCEDURE dbo.uspGetAddress 
GO
-- or
DROP PROC dbo.uspGetAddress 
GO

Dropping Multiple Stored Procedures

To drop multiple stored procedures with one command you specify each procedure separated by a comma as shown below.

DROP PROCEDURE dbo.uspGetAddress, dbo.uspInsertAddress, dbo.uspDeleteAddress
GO
-- or
DROP PROC dbo.uspGetAddress, dbo.uspInsertAddress, dbo.uspDeleteAddress
GO





Comments For This Article




Monday, May 8, 2023 - 10:17:30 AM - Greg Robidoux Back To Top (91168)
Yes, you can use this to remove a new stored procedure.

Monday, May 8, 2023 - 6:13:28 AM - Billy494 Back To Top (91167)
If I create a new store procedure by mistake, can I also use this method?

Friday, December 23, 2016 - 4:26:08 PM - Norbert Muth Back To Top (45037)

Hallo,

another tipp: make an example, how the drop or alter statement is executed only when the stored procedure exists.

And when the sp should be created, how it's done save; means: if not exists then create sp with a dummy statemnet and afterward an alter sp. So in any case you get the actual version without any errors.

best wishes

 

Norbert















get free sql tips
agree to terms