I need to find out if a function exists on a database, so that I can drop it and create it again. It should basically be something like the following code that I use for stored procedures:

IF EXISTS (select * from dbo.sysobjects where id = object_id(N'[dbo].[SP_TEST]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)

Apologies if this is a trivial question, but I'm having a hard time finding the answer.

link|improve this question

67% accept rate
feedback

2 Answers

up vote 15 down vote accepted

This is what SSMS uses when you script using the DROP and CREATE option

IF  EXISTS (SELECT * FROM sys.objects 
            WHERE object_id = OBJECT_ID(N'[dbo].[foo]') 
            AND type in (N'FN', N'IF', N'TF', N'FS', N'FT'))

This approach to deploying changes means that you need to recreate all permissions on the object so you might consider ALTER-ing if Exists instead.

link|improve this answer
3  
Makes me wonder even more why there isn't a sys.functions system catalog view..... – marc_s Mar 24 '11 at 12:33
Thanks Martin, your answer is spot on! – Dr. Greenthumb Mar 24 '11 at 12:47
feedback

I tend to use the Information_Schema:

if EXISTS (select 1 from Information_schema.Routines where Specific_schema='dbo' and specific_name = 'Foo' and Routine_Type='FUNCTION')

for functions and then change Routine_type for stored procs:

if EXISTS (select 1 from Information_schema.Routines where Specific_schema='dbo' and specific_name = 'Foo' and Routine_Type='PROCEDURE')
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.