drop a Stored Procedure in SQL Server

DROP a Stored Procedure in SQL Server

-- ============================
-- ============================

IF EXISTS (SELECT * FROM DBO.SYSOBJECTs where id = OBJECT_ID(N'[dbo].[sp_Get_XX]')
AND OBJECTPROPERTY(id, N'IsProcedure') = 1)
    DROP PROCEDURE [dbo].[sp_Get_XX]
GO

                                       --OR

IF OBJECT_ID('[dbo].[sp_Get_XX]') IS NOT NULL
    DROP PROCEDURE [dbo].[sp_Get_XX]
GO

                                      --OR

IF EXISTS (SELECT NAME FROM SYSOBJECTS WHERE NAME = '[dbo].[sp_Get_XX]' AND TYPE = 'P')
            DROP PROCEDURE [dbo].[sp_Get_XX]
GO

                                    -- OR


DROP PROC [dbo].[sp_Get_XX]
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^