Skip to content
Advertisement

Is there a T-SQL command that checks whether the object to which a synonym refers exists and is valid?

I’m trying to test if all synonyms on a database refer to valid objects, using the SQL batch script below, as part of a clean-up effort on our databases. This script just performs a query against the synonym, and printing out any errors it encounters. This works fine on views and tables, but not on sprocs.

Is there’s an command that I can perform on a sproc, table, or view that will throw an error if it doesn’t exist?

The synonyms can either point to an object on a linked server or an object on the current @@SERVERNAME, so I can’t really just query sys.procedures in the catch block to see if it’s there. I’d have to know if the synonym points to a linked server, and then I’d have to query that server’s sys.procedures view.

I found a similar question, How can I check if the table behind a synonym exists, but it isn’t quite what I’m asking. Everything else I found was Oracle specific.


UPDATE: The script below works for my needs. Thank’s to @kenny-evitt for the information I needed to form it.

Advertisement

Answer

You can use OBJECT_ID with the base_object_name column of sys.synonyms to test whether the base objects exist:


The query was adapted from this answer to this same question.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement