Quick tip: Search for a term in a Stored Procedure
Need to find out if a term is referenced in any stored procedures in your database? Use the following T-SQL statement...
select name, definition
from sys.procedures p
inner join sys.sql_modules m
on p.object_id = m.object_id
where
m.definition like '%search term%';
This will work in SQL Server 2005 and 2008.
4 comments
Alan Wood said...
It sounds like you may only have SSMS Express installed, is that correct?
Jan 21, 2009
mohammad ghoreishy said...
hi, thanks for your reply, what other application should be installed?
Alan Wood said...
I'm not totally sure, but I think you may need the full version of SSMS, not Express. You should be able to get this if you have Developer Edition.

i have a problem with management studio2008
in "Object Explorer" -> "Connect" there isn't "Reporting Services". just there are :"database engine" and "sql server compact...".
i want to work with reporting service from management studio 2008.