Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Utility like VFP Code References
Message
General information
Forum:
Microsoft SQL Server
Category:
Third party products
Environment versions
SQL Server:
SQL Server 2008
Application:
Desktop
Miscellaneous
Thread ID:
01494614
Message ID:
01494615
Views:
71
This message has been marked as the solution to the initial question of the thread.
>Is there a utility within SQL Server or available as a third party product that can do 'code reference searches' for all stored procedures and functions within an instance of SQL Server?

Yes, there are third party utilities that can do this. I saw them referenced on Transact-SQL forum, will check later.

As a quick check, you can also do
select [Name], OBJECT_DEFINITION(object_ID) as [Code] from sys.procedures where OBJECT_DEFINITION(Object_ID) like '%SearchString%'
See also this relevant MSDN thread
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform