Community Page
- www.tech-recipes.com/ Jump to website »
-
Subscribe -
Community
-
Top Commenters
-
Popular Threads
-
Recent Comments
- Go to internet options - general tab. Go to Tabs. Tabs settings. Select "when a new tab is opened, open", and select a blank page. TADA
- Please completely delte my MySpace Profile with all information. I do understand that this will be permanent...
- Thank you! This was very helpful.
- Opps I didn't see lift chair... "The 'gcc compiler' is installed when one installs 'XcodeTools' (via the 'XcodeTools.mpkg' file) from the installation CD (if...
- Sorry if i am repeating anyone but I know if you have mac 10.4.X then on the install disk you can find a copy of xcode...
Tech-Recipes
Cookbook of Tech TutorialsSQL Server 2005: Locating Stored Procedures that Contain a Keyword
Started by qdideas · 7 months ago
Making changes to a database that has been created by a third pary can be a difficult task, especially when you don't want to break any of the existing stored procedures. You can search the database's stored procedures for keywords to find which procedures use a keyword that is involved in yo
... Continue reading »
6 months ago
5 months ago
select OBJECT_NAME(m.object_id), m.definition from sys.sql_modules m where
Definition like '%YourKeyword%'
Frankly I like yours better