<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: SQL SERVER &#8211; 2005 &#8211; Search Stored Procedure Code &#8211; Search Stored Procedure Text</title>
	<atom:link href="http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/</link>
	<description>Notes of a SQL Server MVP and Database Administrator</description>
	<lastBuildDate>Sat, 21 Nov 2009 05:54:09 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Ben Joyce</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-57144</link>
		<dc:creator>Ben Joyce</dc:creator>
		<pubDate>Thu, 29 Oct 2009 16:39:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-57144</guid>
		<description>Such a shame this sort of functionality can&#039;t be tied in to the &quot;Edit &#124; Find&quot; dialog in Management Studio.

ApexSQL Edit does this really well but I&#039;d rather not have to use two editors.

Sigh.</description>
		<content:encoded><![CDATA[<p>Such a shame this sort of functionality can&#8217;t be tied in to the &#8220;Edit | Find&#8221; dialog in Management Studio.</p>
<p>ApexSQL Edit does this really well but I&#8217;d rather not have to use two editors.</p>
<p>Sigh.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rathin</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-57092</link>
		<dc:creator>rathin</dc:creator>
		<pubDate>Wed, 28 Oct 2009 05:30:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-57092</guid>
		<description>i want to stored procedure for fetch data from more than two table.</description>
		<content:encoded><![CDATA[<p>i want to stored procedure for fetch data from more than two table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rohan</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-56447</link>
		<dc:creator>Rohan</dc:creator>
		<pubDate>Mon, 05 Oct 2009 17:46:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-56447</guid>
		<description>Hi Pinal,

I have the code to search text in the SP. Is there a way to get LineNumbers for the text?. This helps me pinpoint exact places that need to change.

Regards,
Rohan</description>
		<content:encoded><![CDATA[<p>Hi Pinal,</p>
<p>I have the code to search text in the SP. Is there a way to get LineNumbers for the text?. This helps me pinpoint exact places that need to change.</p>
<p>Regards,<br />
Rohan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: P.Gunalan</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-55238</link>
		<dc:creator>P.Gunalan</dc:creator>
		<pubDate>Wed, 26 Aug 2009 10:32:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-55238</guid>
		<description>Sir i am need of creating function inside stored procedure can you resolve my doubt since i am new to sql server2005 i&#039;m unable to find solution</description>
		<content:encoded><![CDATA[<p>Sir i am need of creating function inside stored procedure can you resolve my doubt since i am new to sql server2005 i&#8217;m unable to find solution</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Venkatesh</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-54260</link>
		<dc:creator>Venkatesh</dc:creator>
		<pubDate>Thu, 30 Jul 2009 10:04:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-54260</guid>
		<description>Hi all,

SELECT ROUTINE_NAME, ROUTINE_DEFINITION 
FROM INFORMATION_SCHEMA.ROUTINES 
WHERE ROUTINE_DEFINITION LIKE &#039;%Student%&#039; 
 AND ROUTINE_TYPE=&#039;PROCEDURE&#039;

IF this views only search the SPs less than 4000 character length. If my SP is more than 4000 character means I can&#039;t get the results.

Why System View INFORMATION_SCHEMA.ROUTINES ROUTINE_DEFINITION Column Size is NVARCHAR(4000)..?</description>
		<content:encoded><![CDATA[<p>Hi all,</p>
<p>SELECT ROUTINE_NAME, ROUTINE_DEFINITION<br />
FROM INFORMATION_SCHEMA.ROUTINES<br />
WHERE ROUTINE_DEFINITION LIKE &#8216;%Student%&#8217;<br />
 AND ROUTINE_TYPE=&#8217;PROCEDURE&#8217;</p>
<p>IF this views only search the SPs less than 4000 character length. If my SP is more than 4000 character means I can&#8217;t get the results.</p>
<p>Why System View INFORMATION_SCHEMA.ROUTINES ROUTINE_DEFINITION Column Size is NVARCHAR(4000)..?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ravikumar</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-52926</link>
		<dc:creator>ravikumar</dc:creator>
		<pubDate>Thu, 11 Jun 2009 05:54:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-52926</guid>
		<description>hi sir  i want  stored procedure  quriees just like select,insert ,delete,updatecommands ple</description>
		<content:encoded><![CDATA[<p>hi sir  i want  stored procedure  quriees just like select,insert ,delete,updatecommands ple</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gani</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-51246</link>
		<dc:creator>Gani</dc:creator>
		<pubDate>Thu, 23 Apr 2009 13:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-51246</guid>
		<description>Hi Mahalaxmi, 

Its very easy to get the details from table through stored procedure

If the table name is dbo.employee

SP Creation:

create procedure dbo.getemployeedetails
as
begin

     select * from dbo.employee

end

execute this procedure in query window...

exec dbo.employeedetails</description>
		<content:encoded><![CDATA[<p>Hi Mahalaxmi, </p>
<p>Its very easy to get the details from table through stored procedure</p>
<p>If the table name is dbo.employee</p>
<p>SP Creation:</p>
<p>create procedure dbo.getemployeedetails<br />
as<br />
begin</p>
<p>     select * from dbo.employee</p>
<p>end</p>
<p>execute this procedure in query window&#8230;</p>
<p>exec dbo.employeedetails</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mahalakshmi</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-50663</link>
		<dc:creator>mahalakshmi</dc:creator>
		<pubDate>Wed, 08 Apr 2009 04:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-50663</guid>
		<description>hi pinel,

i&#039;m new to this software field. actually i created one database table in db. could u tell me how to retrieve that table in stored procedure.</description>
		<content:encoded><![CDATA[<p>hi pinel,</p>
<p>i&#8217;m new to this software field. actually i created one database table in db. could u tell me how to retrieve that table in stored procedure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQLAuthority News - Best Articles on SQLAuthority.com Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-47244</link>
		<dc:creator>SQLAuthority News - Best Articles on SQLAuthority.com Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Tue, 24 Feb 2009 12:10:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-47244</guid>
		<description>[...] SQL SERVER - 2005 - Search Stored Procedure Code - Search Stored Procedure Text [...]</description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER &#8211; 2005 &#8211; Search Stored Procedure Code &#8211; Search Stored Procedure Text [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: manohar</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-46927</link>
		<dc:creator>manohar</dc:creator>
		<pubDate>Thu, 19 Feb 2009 18:55:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-46927</guid>
		<description>Hi This is manohar,

I Need Search StoredProcedure.

     i have 2 columns in Table one Column is &#039;JobId&#039;  and secoud Column is &#039;Location&#039;

select JobId,JObLocation From Jobs

i need search Procedure Two Columuns at a time 
  if one culumn left onethe column result should disply vise virsa

and   if i am giving half of text to search for any of column it should give the result with that .......

please give Procedure for it</description>
		<content:encoded><![CDATA[<p>Hi This is manohar,</p>
<p>I Need Search StoredProcedure.</p>
<p>     i have 2 columns in Table one Column is &#8216;JobId&#8217;  and secoud Column is &#8216;Location&#8217;</p>
<p>select JobId,JObLocation From Jobs</p>
<p>i need search Procedure Two Columuns at a time<br />
  if one culumn left onethe column result should disply vise virsa</p>
<p>and   if i am giving half of text to search for any of column it should give the result with that &#8230;&#8230;.</p>
<p>please give Procedure for it</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Imran Mohammed</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-46548</link>
		<dc:creator>Imran Mohammed</dc:creator>
		<pubDate>Wed, 11 Feb 2009 01:29:00 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-46548</guid>
		<description>@Raja

Please look at this link,

http://blog.sqlauthority.com/2007/10/06/sql-server-executing-remote-stored-procedure-calling-stored-procedure-on-linked-server/


Regards,
IM.</description>
		<content:encoded><![CDATA[<p>@Raja</p>
<p>Please look at this link,</p>
<p><a href="http://blog.sqlauthority.com/2007/10/06/sql-server-executing-remote-stored-procedure-calling-stored-procedure-on-linked-server/" rel="nofollow">http://blog.sqlauthority.com/2007/10/06/sql-server-executing-remote-stored-procedure-calling-stored-procedure-on-linked-server/</a></p>
<p>Regards,<br />
IM.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raja</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-46522</link>
		<dc:creator>Raja</dc:creator>
		<pubDate>Tue, 10 Feb 2009 12:00:51 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-46522</guid>
		<description>How can i access Linked server Stored Procedures ?</description>
		<content:encoded><![CDATA[<p>How can i access Linked server Stored Procedures ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: andrew</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-44912</link>
		<dc:creator>andrew</dc:creator>
		<pubDate>Thu, 18 Dec 2008 14:18:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-44912</guid>
		<description>Where is the code for the stored procedure stored within SQL Server?</description>
		<content:encoded><![CDATA[<p>Where is the code for the stored procedure stored within SQL Server?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Siddhesh</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-41697</link>
		<dc:creator>Siddhesh</dc:creator>
		<pubDate>Fri, 15 Aug 2008 05:31:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-41697</guid>
		<description>This is Siddhesh
I need a search algorithm which when ran on any server can reveal names of all the stored procedures stored on it .

Does ant 1 has any idea?</description>
		<content:encoded><![CDATA[<p>This is Siddhesh<br />
I need a search algorithm which when ran on any server can reveal names of all the stored procedures stored on it .</p>
<p>Does ant 1 has any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SJK</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-40469</link>
		<dc:creator>SJK</dc:creator>
		<pubDate>Sat, 19 Jul 2008 07:25:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-40469</guid>
		<description>Thanks a lot

You will get simple code to search SP by text Visit this link

http://www.tctcworld.com/dotnet/viewtopic.php?f=4&amp;t=43

Thanks</description>
		<content:encoded><![CDATA[<p>Thanks a lot</p>
<p>You will get simple code to search SP by text Visit this link</p>
<p><a href="http://www.tctcworld.com/dotnet/viewtopic.php?f=4&amp;t=43" rel="nofollow">http://www.tctcworld.com/dotnet/viewtopic.php?f=4&amp;t=43</a></p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ravi Kanth Ponnam</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-39897</link>
		<dc:creator>Ravi Kanth Ponnam</dc:creator>
		<pubDate>Tue, 08 Jul 2008 09:14:16 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-39897</guid>
		<description>I found one issue with the above given code.
suppose say my table name existing as a alias name in any stored procedure, then even that stored procedure is getting displayed as dependent on the stored procedure, which is incorrect.
E.g.:
SELECT Name FROM sys.procedures
WHERE OBJECT_DEFINITION(OBJECT_ID) like &#039;%books%&#039;


then suppose say, I have created a SP as follows,

create procedure employeekidding
as
select empno,managerno*deptno as books from employee

Issue:
the above created procedure is getting displayed as if it is dependent on books table, which is not.</description>
		<content:encoded><![CDATA[<p>I found one issue with the above given code.<br />
suppose say my table name existing as a alias name in any stored procedure, then even that stored procedure is getting displayed as dependent on the stored procedure, which is incorrect.<br />
E.g.:<br />
SELECT Name FROM sys.procedures<br />
WHERE OBJECT_DEFINITION(OBJECT_ID) like &#8216;%books%&#8217;</p>
<p>then suppose say, I have created a SP as follows,</p>
<p>create procedure employeekidding<br />
as<br />
select empno,managerno*deptno as books from employee</p>
<p>Issue:<br />
the above created procedure is getting displayed as if it is dependent on books table, which is not.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sivangari</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-39185</link>
		<dc:creator>sivangari</dc:creator>
		<pubDate>Thu, 12 Jun 2008 11:53:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-39185</guid>
		<description>how to get the structure of sp of unkown stored procedure name.</description>
		<content:encoded><![CDATA[<p>how to get the structure of sp of unkown stored procedure name.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tatyana</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-36890</link>
		<dc:creator>Tatyana</dc:creator>
		<pubDate>Mon, 05 May 2008 17:10:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-36890</guid>
		<description>Here is a query to look for a string in all the database&#039;s procedures:
-------------------------------------------------------
USE DataBaseName
GO
-- 

-- create temporary Result table to gather names and text
-- of the procedures in the DataBaseName database :
CREATE TABLE #Result 
(TextField varchar(max), ProcName varchar(100))

-- create temporary ProcName table with the names of
-- all the procedures in the database [DataBaseName]:
CREATE TABLE #ProcList
(ID int IDENTITY, ProcName varchar(100))

-- populate the ProcName table with the procedure names:
INSERT #ProcList SELECT [name] from sys.procedures

-- get the number of procedures (to be used in the loop below):
DECLARE @NumberOfProcs int
SELECT @NumberOfProcs = COUNT(*) FROM sys.procedures

-- loop to populate the Result table:
DECLARE @i INT
SET @i = 1
DECLARE @ProcName varchar(100)
DECLARE @SQL varchar(2000)
WHILE @i &lt;= @NumberOfProcs
BEGIN
SELECT @ProcName = ProcName FROM #ProcList WHERE ID = @i
SET @SQL = &#039;INSERT INTO #Result (TextField) EXEC sp_helptext &#039; + @ProcName
EXEC (@SQL)
UPDATE #Result SET ProcName = @ProcName WHERE ProcName IS NULL
SET @i = @i + 1
END

-- look for a string you need [your string] in the Result table
SELECT * FROM #Result WHERE TextField LIKE &#039;%your string%&#039;

-- clean up
DROP TABLE #Result
DROP TABLE #ProcList</description>
		<content:encoded><![CDATA[<p>Here is a query to look for a string in all the database&#8217;s procedures:<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
USE DataBaseName<br />
GO<br />
&#8211; </p>
<p>&#8211; create temporary Result table to gather names and text<br />
&#8211; of the procedures in the DataBaseName database :<br />
CREATE TABLE #Result<br />
(TextField varchar(max), ProcName varchar(100))</p>
<p>&#8211; create temporary ProcName table with the names of<br />
&#8211; all the procedures in the database [DataBaseName]:<br />
CREATE TABLE #ProcList<br />
(ID int IDENTITY, ProcName varchar(100))</p>
<p>&#8211; populate the ProcName table with the procedure names:<br />
INSERT #ProcList SELECT [name] from sys.procedures</p>
<p>&#8211; get the number of procedures (to be used in the loop below):<br />
DECLARE @NumberOfProcs int<br />
SELECT @NumberOfProcs = COUNT(*) FROM sys.procedures</p>
<p>&#8211; loop to populate the Result table:<br />
DECLARE @i INT<br />
SET @i = 1<br />
DECLARE @ProcName varchar(100)<br />
DECLARE @SQL varchar(2000)<br />
WHILE @i &lt;= @NumberOfProcs<br />
BEGIN<br />
SELECT @ProcName = ProcName FROM #ProcList WHERE ID = @i<br />
SET @SQL = &#8216;INSERT INTO #Result (TextField) EXEC sp_helptext &#8216; + @ProcName<br />
EXEC (@SQL)<br />
UPDATE #Result SET ProcName = @ProcName WHERE ProcName IS NULL<br />
SET @i = @i + 1<br />
END</p>
<p>&#8211; look for a string you need [your string] in the Result table<br />
SELECT * FROM #Result WHERE TextField LIKE &#8216;%your string%&#8217;</p>
<p>&#8211; clean up<br />
DROP TABLE #Result<br />
DROP TABLE #ProcList</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: phani</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-34319</link>
		<dc:creator>phani</dc:creator>
		<pubDate>Thu, 13 Mar 2008 09:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-34319</guid>
		<description>how can i view the sp (already written)</description>
		<content:encoded><![CDATA[<p>how can i view the sp (already written)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQLAuthority News - Authors Most Visited Article on Blog Journey to SQL Authority with Pinal Dave</title>
		<link>http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-34259</link>
		<dc:creator>SQLAuthority News - Authors Most Visited Article on Blog Journey to SQL Authority with Pinal Dave</dc:creator>
		<pubDate>Tue, 11 Mar 2008 18:07:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/09/03/sql-server-2005-search-stored-procedure-code-search-stored-procedure-text/#comment-34259</guid>
		<description>[...] SQL SERVER - 2005 - Search Stored Procedure Code - Search Stored Procedure Text  [...]</description>
		<content:encoded><![CDATA[<p>[...] SQL SERVER &#8211; 2005 &#8211; Search Stored Procedure Code &#8211; Search Stored Procedure Text  [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
