If I’ve been told a table (or proc) name, but not which connected database the object is located in, is there any simple script to search for it? Maybe search somewhere in the System Databases? (I’m using SQL Server 2005)
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
There is a schema called
INFORMATION_SCHEMAschema which contains a set of views on tables from the SYS schema that you can query to get what you want.A major upside of the
INFORMATION_SCHEMAis that the object names are very query friendly and user readable. The downside of theINFORMATION_SCHEMAis that you have to write one query for each type of object.The Sys schema may seem a little cryptic initially, but it has all the same information (and more) in a single spot.
You’d start with a table called SysObjects (each database has one) that has the names of all objects and their types.
One could search in a database as follows:
Now, if you wanted to restrict this to only search for tables and stored procs, you would do
If you look up object types, you will find a whole list for views, triggers, etc.
Now, if you want to search for this in each database, you will have to iterate through the databases. You can do one of the following:
If you want to search through each database without any clauses, then use the sp_MSforeachdb as shown in an answer here.
If you only want to search specific databases, use the "USE DBName" and then search command.
You will benefit greatly from having it parameterized in that case. Note that the name of the database you are searching in will have to be replaced in each query (DatabaseOne, DatabaseTwo…). Check this out: