IMG-LOGO

How to delete a stored procedure in TSQL?

andy - 09 Jan, 2021 1689 Views 0 Comment

If you need to delete a stored procedure in TSQL. You can use a built-in function called DROP. It is recommended that you perform a check to see if the stored procedure you want to delete does exist in the sysobjects table. 

Let says we have a stored procedure called NewUser.

Here is the full TSQL query to perform a deletion of the stored procedure in SQL Server.


IF EXISTS (
	SELECT * FROM dbo.sysobjects 
	WHERE Id = object_id(N'NewUser') 
	AND OBJECTPROPERTY(id, N'IsProcedure') = 1
)
	DROP PROCEDURE NewUser
GO

Comments

There are no comments available.

Write Comment
0 characters entered. Maximum characters allowed are 1000 characters.

Related Articles

How to restore database using SQL query in TSQL?

If you have a database backup bak file extension and want to restore it using SQL query You can use the built in RESTORE DATABASE function Remember in order to be able to restore a database successfully You need to ...

How to get all table sizes in TSQL?

To get the information about how much space or size used by tables You can retrieve the size information by linking multiple tables in sys tables There are two tables that hold this information The first one is the sys ...