Using EXISTS for Functions, Stored Procedures and Databases

Here is a segment of code you should add to any T-SQL that is dropping a function or stored procedure to make sure you are doing so safely:

This T-SQL below is if you prefer using the sys.objects approach:

…or you can use the INFORMATION_SCHEMA approach:

Functions

and simply change the “Routine_Type” to check for stored procedures:

Stored Procedures

Here is how you check for the existence of a database in SQL Server:

Here is another way to use db_id to see if it is null.

Views – 1803

Leave a Reply