<?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; List All Stored Procedure in Database</title>
	<atom:link href="http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/</link>
	<description>Personal Notes of Pinal Dave</description>
	<lastBuildDate>Fri, 17 May 2013 15:26:57 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: vidhya sagar reddy</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-449301</link>
		<dc:creator><![CDATA[vidhya sagar reddy]]></dc:creator>
		<pubDate>Wed, 03 Apr 2013 12:07:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-449301</guid>
		<description><![CDATA[use filter: 
select * from sys.objects where type=&#039;u&#039;]]></description>
		<content:encoded><![CDATA[<p>use filter:<br />
select * from sys.objects where type=&#8217;u&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: satish</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-438375</link>
		<dc:creator><![CDATA[satish]]></dc:creator>
		<pubDate>Sat, 16 Mar 2013 12:28:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-438375</guid>
		<description><![CDATA[Dear sir,

I  have received one database from client i had made changes like, create,insert,update, delete, in table and stored procedures, could you please help me how to find the things which i had updated by using any query...]]></description>
		<content:encoded><![CDATA[<p>Dear sir,</p>
<p>I  have received one database from client i had made changes like, create,insert,update, delete, in table and stored procedures, could you please help me how to find the things which i had updated by using any query&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vineetdbudhiya@facebook.com</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-433365</link>
		<dc:creator><![CDATA[Vineetdbudhiya@facebook.com]]></dc:creator>
		<pubDate>Thu, 07 Mar 2013 11:45:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-433365</guid>
		<description><![CDATA[It is possible my dear.. may be all are not knowledge about this.. but recently not any one can use sql server 2000........]]></description>
		<content:encoded><![CDATA[<p>It is possible my dear.. may be all are not knowledge about this.. but recently not any one can use sql server 2000&#8230;&#8230;..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-421274</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Wed, 13 Feb 2013 08:05:30 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-421274</guid>
		<description><![CDATA[What did you mean by phantom stored procedure?]]></description>
		<content:encoded><![CDATA[<p>What did you mean by phantom stored procedure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tim</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-419880</link>
		<dc:creator><![CDATA[Tim]]></dc:creator>
		<pubDate>Sat, 09 Feb 2013 15:58:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-419880</guid>
		<description><![CDATA[I have a phantom stored procedure that keeps running.  How do i find and delete this phantom stored procedure?]]></description>
		<content:encoded><![CDATA[<p>I have a phantom stored procedure that keeps running.  How do i find and delete this phantom stored procedure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: santu</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-418322</link>
		<dc:creator><![CDATA[santu]]></dc:creator>
		<pubDate>Tue, 05 Feb 2013 23:04:22 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-418322</guid>
		<description><![CDATA[Hi, 

I need to pull the all userdefined object info from one database. 

User defined objects  - Tables,index,constraints ,SP,Functions Triggers....

i want the output as below

DBName  ObjectName  ObjectType .....


Can anyone help me please]]></description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>I need to pull the all userdefined object info from one database. </p>
<p>User defined objects  &#8211; Tables,index,constraints ,SP,Functions Triggers&#8230;.</p>
<p>i want the output as below</p>
<p>DBName  ObjectName  ObjectType &#8230;..</p>
<p>Can anyone help me please</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gaby</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-411018</link>
		<dc:creator><![CDATA[gaby]]></dc:creator>
		<pubDate>Tue, 22 Jan 2013 03:45:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-411018</guid>
		<description><![CDATA[HOW CAN I RESOLVE THIS
 list the titles,  prices and advances 
of all the books with the
price greater than 20% of the advance
thanks]]></description>
		<content:encoded><![CDATA[<p>HOW CAN I RESOLVE THIS<br />
 list the titles,  prices and advances<br />
of all the books with the<br />
price greater than 20% of the advance<br />
thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sudhama</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-403830</link>
		<dc:creator><![CDATA[Sudhama]]></dc:creator>
		<pubDate>Fri, 04 Jan 2013 21:59:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-403830</guid>
		<description><![CDATA[SELECT * FROM SYSOBJECTS WHERE XTYPE IN (&#039;P&#039;,&#039;X&#039;) AND category=0  ORDER BY NAME]]></description>
		<content:encoded><![CDATA[<p>SELECT * FROM SYSOBJECTS WHERE XTYPE IN (&#8216;P&#8217;,'X&#8217;) AND category=0  ORDER BY NAME</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vinodjame</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-395460</link>
		<dc:creator><![CDATA[vinodjame]]></dc:creator>
		<pubDate>Tue, 18 Dec 2012 11:53:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-395460</guid>
		<description><![CDATA[How to find DBName using &#039;SPname&#039; in sql on which DB it exists.]]></description>
		<content:encoded><![CDATA[<p>How to find DBName using &#8216;SPname&#8217; in sql on which DB it exists.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naresh</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-386374</link>
		<dc:creator><![CDATA[Naresh]]></dc:creator>
		<pubDate>Mon, 03 Dec 2012 19:53:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-386374</guid>
		<description><![CDATA[I need to copy a store procedures to txt file, by coding only]]></description>
		<content:encoded><![CDATA[<p>I need to copy a store procedures to txt file, by coding only</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avinash Ranjan (@avinash_t)</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-302665</link>
		<dc:creator><![CDATA[Avinash Ranjan (@avinash_t)]]></dc:creator>
		<pubDate>Mon, 18 Jun 2012 06:05:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-302665</guid>
		<description><![CDATA[thanks and it  was very helpful and new to me other than sp_help]]></description>
		<content:encoded><![CDATA[<p>thanks and it  was very helpful and new to me other than sp_help</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nandana</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-288422</link>
		<dc:creator><![CDATA[nandana]]></dc:creator>
		<pubDate>Fri, 25 May 2012 07:46:53 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-288422</guid>
		<description><![CDATA[not possible]]></description>
		<content:encoded><![CDATA[<p>not possible</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morteza Kermani</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-271092</link>
		<dc:creator><![CDATA[Morteza Kermani]]></dc:creator>
		<pubDate>Tue, 03 Apr 2012 06:19:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-271092</guid>
		<description><![CDATA[List Stored Procedures including plain script:

SELECT r.ROUTINE_NAME, r.Routine_Definition
FROM INFORMATION_SCHEMA.Routines r order by r.ROUTINE_NAME]]></description>
		<content:encoded><![CDATA[<p>List Stored Procedures including plain script:</p>
<p>SELECT r.ROUTINE_NAME, r.Routine_Definition<br />
FROM INFORMATION_SCHEMA.Routines r order by r.ROUTINE_NAME</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Morteza Kermani</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-271091</link>
		<dc:creator><![CDATA[Morteza Kermani]]></dc:creator>
		<pubDate>Tue, 03 Apr 2012 06:19:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-271091</guid>
		<description><![CDATA[List Stored Procedures including plain script.]]></description>
		<content:encoded><![CDATA[<p>List Stored Procedures including plain script.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: satish voleti</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-241329</link>
		<dc:creator><![CDATA[satish voleti]]></dc:creator>
		<pubDate>Fri, 20 Jan 2012 14:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-241329</guid>
		<description><![CDATA[in programmablity]]></description>
		<content:encoded><![CDATA[<p>in programmablity</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-240990</link>
		<dc:creator><![CDATA[John]]></dc:creator>
		<pubDate>Thu, 19 Jan 2012 23:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-240990</guid>
		<description><![CDATA[How can I find stored procedures that have never been executed. Not only in the time the log persists in memory? Any idea?
If is not posible I am trying to find out how to save the number of times the stored procedures of my database are executed. Any help please. It is driving me crazy!! Maybe there is a table where all this information is saved.]]></description>
		<content:encoded><![CDATA[<p>How can I find stored procedures that have never been executed. Not only in the time the log persists in memory? Any idea?<br />
If is not posible I am trying to find out how to save the number of times the stored procedures of my database are executed. Any help please. It is driving me crazy!! Maybe there is a table where all this information is saved.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mrkraju</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-204284</link>
		<dc:creator><![CDATA[Mrkraju]]></dc:creator>
		<pubDate>Fri, 25 Nov 2011 10:43:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-204284</guid>
		<description><![CDATA[select parameter_name from information_schema.parameters where specific_name = &#039;SP Name&#039;]]></description>
		<content:encoded><![CDATA[<p>select parameter_name from information_schema.parameters where specific_name = &#8216;SP Name&#8217;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ajit D</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-174879</link>
		<dc:creator><![CDATA[Ajit D]]></dc:creator>
		<pubDate>Tue, 04 Oct 2011 07:50:27 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-174879</guid>
		<description><![CDATA[I want to display all the system stored procedures name with input/output parameters name along with their datatypes.

Select * from sys.all_objects where type=&#039;p&#039; doesn&#039;t give information about input/output parameter names.

exec sp_stored_procedures displays information about i/o parameters name but what is PROCEDURE_TYPE.

What is the name of main tab;e and where can I find that..

Same thing I want to know for System Functions.]]></description>
		<content:encoded><![CDATA[<p>I want to display all the system stored procedures name with input/output parameters name along with their datatypes.</p>
<p>Select * from sys.all_objects where type=&#8217;p&#8217; doesn&#8217;t give information about input/output parameter names.</p>
<p>exec sp_stored_procedures displays information about i/o parameters name but what is PROCEDURE_TYPE.</p>
<p>What is the name of main tab;e and where can I find that..</p>
<p>Same thing I want to know for System Functions.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Fred</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-168175</link>
		<dc:creator><![CDATA[Fred]]></dc:creator>
		<pubDate>Thu, 15 Sep 2011 00:52:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-168175</guid>
		<description><![CDATA[:)) That was really funny]]></description>
		<content:encoded><![CDATA[<p>:)) That was really funny</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yash</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-164846</link>
		<dc:creator><![CDATA[yash]]></dc:creator>
		<pubDate>Fri, 02 Sep 2011 17:01:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-164846</guid>
		<description><![CDATA[Hi Pinal / All,

is there any way to restore the deleted stored procedure in SQL 2005 ?


Thanks,
Yash]]></description>
		<content:encoded><![CDATA[<p>Hi Pinal / All,</p>
<p>is there any way to restore the deleted stored procedure in SQL 2005 ?</p>
<p>Thanks,<br />
Yash</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sqlfrndz</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-152467</link>
		<dc:creator><![CDATA[sqlfrndz]]></dc:creator>
		<pubDate>Mon, 01 Aug 2011 22:42:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-152467</guid>
		<description><![CDATA[Simple and exec sp_stored_procedures]]></description>
		<content:encoded><![CDATA[<p>Simple and exec sp_stored_procedures</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raj</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-131733</link>
		<dc:creator><![CDATA[raj]]></dc:creator>
		<pubDate>Thu, 28 Apr 2011 12:24:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-131733</guid>
		<description><![CDATA[Hi Jack

First select database name master then you query execute.]]></description>
		<content:encoded><![CDATA[<p>Hi Jack</p>
<p>First select database name master then you query execute.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ramesh</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-124816</link>
		<dc:creator><![CDATA[Ramesh]]></dc:creator>
		<pubDate>Thu, 24 Mar 2011 09:31:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-124816</guid>
		<description><![CDATA[The above Query is not working in list the all procedures in Database]]></description>
		<content:encoded><![CDATA[<p>The above Query is not working in list the all procedures in Database</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stephane</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-118665</link>
		<dc:creator><![CDATA[Stephane]]></dc:creator>
		<pubDate>Tue, 15 Feb 2011 17:57:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-118665</guid>
		<description><![CDATA[Would it possible to create a query that would extract the code of each stored procedure into distinct files?]]></description>
		<content:encoded><![CDATA[<p>Would it possible to create a query that would extract the code of each stored procedure into distinct files?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sabarish</title>
		<link>http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-92213</link>
		<dc:creator><![CDATA[Sabarish]]></dc:creator>
		<pubDate>Tue, 12 Oct 2010 04:40:33 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/11/27/sql-server-2005-list-all-stored-procedure-in-database/#comment-92213</guid>
		<description><![CDATA[Hi,

I need to get the stored procedures from two different database. Is that possible? If so, help me.

I was using this query to retrieve stored procedures from the SQL Server. But it retrieves ONLY from the currently mounted database.

select specific_name,specific_catalog,created, last_altered from information_schema.routines
where routine_type=&#039;PROCEDURE&#039; 
order by created, last_altered


What I need is,

(i.e) Consider Database1 and Database2

=========================================
specific_name   specific_catalog   created      last_altered 
=========================================
Sp_getname      Database1      2009-01-09    2009-01-09 
Sp_getage        Database2        2009-01-09    2009-01-09 
=========================================


Thanks,
Sabarish]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I need to get the stored procedures from two different database. Is that possible? If so, help me.</p>
<p>I was using this query to retrieve stored procedures from the SQL Server. But it retrieves ONLY from the currently mounted database.</p>
<p>select specific_name,specific_catalog,created, last_altered from information_schema.routines<br />
where routine_type=&#8217;PROCEDURE&#8217;<br />
order by created, last_altered</p>
<p>What I need is,</p>
<p>(i.e) Consider Database1 and Database2</p>
<p>=========================================<br />
specific_name   specific_catalog   created      last_altered<br />
=========================================<br />
Sp_getname      Database1      2009-01-09    2009-01-09<br />
Sp_getage        Database2        2009-01-09    2009-01-09<br />
=========================================</p>
<p>Thanks,<br />
Sabarish</p>
]]></content:encoded>
	</item>
</channel>
</rss>
