<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: SQL Server 2005: Locating Stored Procedures that Contain a Keyword</title>
	<atom:link href="http://www.tech-recipes.com/rx/3701/sql-server-2005-locating-stored-procedures-that-contain-a-keyword/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tech-recipes.com/rx/3701/sql-server-2005-locating-stored-procedures-that-contain-a-keyword/</link>
	<description>Computer and technology tutorials and guides</description>
	<lastBuildDate>Sat, 21 Nov 2009 20:38:45 -0800</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Dan Wygant</title>
		<link>http://www.tech-recipes.com/rx/3701/sql-server-2005-locating-stored-procedures-that-contain-a-keyword/comment-page-1/#comment-8186</link>
		<dc:creator>Dan Wygant</dc:creator>
		<pubDate>Thu, 05 Feb 2009 13:06:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3701#comment-8186</guid>
		<description>Thanks! good info. Here is the OBJECT_NAME built-in for SS05 and beyond... I&#039;m on ss08 now.&lt;br&gt;&lt;br&gt;select OBJECT_NAME(m.object_id), m.definition from sys.sql_modules m where &lt;br&gt;Definition like &#039;%YourKeyword%&#039;&lt;br&gt;&lt;br&gt;Frankly I like yours better</description>
		<content:encoded><![CDATA[<p>Thanks! good info. Here is the OBJECT_NAME built-in for SS05 and beyond&#8230; I&#39;m on ss08 now.</p>
<p>select OBJECT_NAME(m.object_id), m.definition from sys.sql_modules m where <br />Definition like &#39;%YourKeyword%&#39;</p>
<p>Frankly I like yours better</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sleakbug</title>
		<link>http://www.tech-recipes.com/rx/3701/sql-server-2005-locating-stored-procedures-that-contain-a-keyword/comment-page-1/#comment-5955</link>
		<dc:creator>sleakbug</dc:creator>
		<pubDate>Tue, 09 Dec 2008 02:38:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.tech-recipes.com/?p=3701#comment-5955</guid>
		<description>In SQL 2000 you will need to join together all the 8K records in syscomments for each stored procedure to search within, and beware of your search term breaking across an 8K boundary between 8K records. That will require creating a record that includes the last 1000 chars of one record + the first 1000 chars of the next record to include in the search. You may use less than 1000 chars depending on the size of your search terms.</description>
		<content:encoded><![CDATA[<p>In SQL 2000 you will need to join together all the 8K records in syscomments for each stored procedure to search within, and beware of your search term breaking across an 8K boundary between 8K records. That will require creating a record that includes the last 1000 chars of one record + the first 1000 chars of the next record to include in the search. You may use less than 1000 chars depending on the size of your search terms.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
