I have an script that falls over if any of the procedures it is trying to create already exists. How can I check/drop if this procedure is already created?

link|improve this question
1  
IBM i 7.1 supports the Create Or Replace Procedure statement which will drop the procedure if it already exists and then create the new procedure. – Dave Apr 7 '11 at 16:49
feedback

2 Answers

I would guess something along the lines of:

IF EXISTS
(
    SELECT *
    FROM SYSPROCS
    WHERE SPECIFIC_SCHEMA = ???
      AND SPECIFIC_NAME = ???
      AND ROUTINE_SCHEMA = ???
      AND ROUTINE_NAME = ???
)
    DROP PROCEDURE ???

I don't know if you actually need the SPECIFIC_* information or not and I don't know how to handle cases where you have two procedures with the same name but different call signatures, but hopefully this gets you on the right track.

link|improve this answer
feedback
IF  EXISTS (SELECT * FROM dbo.sysobjects WHERE id = OBJECT_ID(N'[dbo].[Procedure_Name]') AND OBJECTPROPERTY(id,N'IsProcedure') = 1)
DROP PROCEDURE [dbo].[Procedure_Name]

I think this would help you

link|improve this answer
Not on DB2 for iSeries, which is what is being asked since the question is tagged ibm-midrange. – WarrenT Mar 6 at 23:46
feedback

Your Answer

 
or
required, but never shown