IMG-LOGO

How to check if a function is already exists in sql server?

andy - 02 Aug, 2014 3117 Views 0 Comment

Do you want to know if a function has already exists in sql server? This quick check if condition may come handy especially if you want to run a batch sql query.

IF EXISTS (SELECT * FROM   sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[my_function]') AND type IN ( N'FN', N'IF', N'TF', N'FS', N'FT' ))
  DROP FUNCTION [dbo].[my_function]
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 ...