<?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; Find Stored Procedure Create Date and Modified Date</title>
	<atom:link href="http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/</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: Grgegory Ferdinandsen</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-437224</link>
		<dc:creator><![CDATA[Grgegory Ferdinandsen]]></dc:creator>
		<pubDate>Thu, 14 Mar 2013 12:00:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-437224</guid>
		<description><![CDATA[I use, that way the code is more generic and does not require know the name of the SP

select @SPCreate = create_date from sys.objects where name = @SPName
select @SPMod = modify_date from sys.objects where name = @SPName]]></description>
		<content:encoded><![CDATA[<p>I use, that way the code is more generic and does not require know the name of the SP</p>
<p>select @SPCreate = create_date from sys.objects where name = @SPName<br />
select @SPMod = modify_date from sys.objects where name = @SPName</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manish Solanki</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-433907</link>
		<dc:creator><![CDATA[Manish Solanki]]></dc:creator>
		<pubDate>Fri, 08 Mar 2013 13:14:20 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-433907</guid>
		<description><![CDATA[Hi Friends...
I have Problem with Date Field.
I have Birthday_Table.

Table Filed :
=========
ID(int),
NAME(varchar(150)),
DOB(date)

Store Procedure:
=============
//Store Procedure Parameters
@ID INT,
@NAME VARCHAR(150),
@DOB DATE

INSERT INTO Birthday_Table
(ID,NAME,DOB)
VALUES
(@ID,@NAME,@DATE)

I Don&#039;t wants to change DOB datatype.
if i pass DOB parameter like &#039;05-05-2013&#039; then Execute Successfully but
i pass DOB parameter like 05-05-2013 then prompt me error in &#039;-&#039;.

Please friends help me....
I hope I will get it from hear..]]></description>
		<content:encoded><![CDATA[<p>Hi Friends&#8230;<br />
I have Problem with Date Field.<br />
I have Birthday_Table.</p>
<p>Table Filed :<br />
=========<br />
ID(int),<br />
NAME(varchar(150)),<br />
DOB(date)</p>
<p>Store Procedure:<br />
=============<br />
//Store Procedure Parameters<br />
@ID INT,<br />
@NAME VARCHAR(150),<br />
@DOB DATE</p>
<p>INSERT INTO Birthday_Table<br />
(ID,NAME,DOB)<br />
VALUES<br />
(@ID,@NAME,@DATE)</p>
<p>I Don&#8217;t wants to change DOB datatype.<br />
if i pass DOB parameter like &#8217;05-05-2013&#8242; then Execute Successfully but<br />
i pass DOB parameter like 05-05-2013 then prompt me error in &#8216;-&#8217;.</p>
<p>Please friends help me&#8230;.<br />
I hope I will get it from hear..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anmol</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-411911</link>
		<dc:creator><![CDATA[Anmol]]></dc:creator>
		<pubDate>Wed, 23 Jan 2013 16:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-411911</guid>
		<description><![CDATA[Thank you so much..]]></description>
		<content:encoded><![CDATA[<p>Thank you so much..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Utku</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-404797</link>
		<dc:creator><![CDATA[Utku]]></dc:creator>
		<pubDate>Mon, 07 Jan 2013 10:13:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-404797</guid>
		<description><![CDATA[Hi,
how to find  stored procedure change user detail and column ınformation situation

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
how to find  stored procedure change user detail and column ınformation situation</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Utku</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-403697</link>
		<dc:creator><![CDATA[Utku]]></dc:creator>
		<pubDate>Fri, 04 Jan 2013 16:22:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-403697</guid>
		<description><![CDATA[Thanks]]></description>
		<content:encoded><![CDATA[<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Avinash Ranjan (@avinash_t)</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-392994</link>
		<dc:creator><![CDATA[Avinash Ranjan (@avinash_t)]]></dc:creator>
		<pubDate>Fri, 14 Dec 2012 07:18:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-392994</guid>
		<description><![CDATA[Very Vary Helpful ...

Thanks SQL Authority]]></description>
		<content:encoded><![CDATA[<p>Very Vary Helpful &#8230;</p>
<p>Thanks SQL Authority</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Naveen.A</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-336474</link>
		<dc:creator><![CDATA[Naveen.A]]></dc:creator>
		<pubDate>Thu, 23 Aug 2012 19:45:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-336474</guid>
		<description><![CDATA[Hi,
   To find the stored procedure details 
&quot;use  DataBase_Name
go
sp_helptext  StoredProcedure_Name&quot;

wil get the Complete Stored Procedure details]]></description>
		<content:encoded><![CDATA[<p>Hi,<br />
   To find the stored procedure details<br />
&#8220;use  DataBase_Name<br />
go<br />
sp_helptext  StoredProcedure_Name&#8221;</p>
<p>wil get the Complete Stored Procedure details</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: SQL SERVER &#8211; Find Column Used in Stored Procedure &#8211; Search Stored Procedure for Column Name &#171; SQL Server Journey with SQL Authority</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-313510</link>
		<dc:creator><![CDATA[SQL SERVER &#8211; Find Column Used in Stored Procedure &#8211; Search Stored Procedure for Column Name &#171; SQL Server Journey with SQL Authority]]></dc:creator>
		<pubDate>Sun, 15 Jul 2012 01:31:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-313510</guid>
		<description><![CDATA[[...] Find Stored Procedure Create Date and Modified Date [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Find Stored Procedure Create Date and Modified Date [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-276618</link>
		<dc:creator><![CDATA[Rajesh]]></dc:creator>
		<pubDate>Mon, 16 Apr 2012 10:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-276618</guid>
		<description><![CDATA[Great. This also Working For me too.... Thanks]]></description>
		<content:encoded><![CDATA[<p>Great. This also Working For me too&#8230;. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cradaa</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-263249</link>
		<dc:creator><![CDATA[Cradaa]]></dc:creator>
		<pubDate>Thu, 15 Mar 2012 12:25:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-263249</guid>
		<description><![CDATA[I just have to say, that I love your blog. I use it frequently to get information.
Thank you.]]></description>
		<content:encoded><![CDATA[<p>I just have to say, that I love your blog. I use it frequently to get information.<br />
Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bineesh</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-185737</link>
		<dc:creator><![CDATA[bineesh]]></dc:creator>
		<pubDate>Mon, 31 Oct 2011 04:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-185737</guid>
		<description><![CDATA[Any chance to find out the login id who created the stored procedure ?]]></description>
		<content:encoded><![CDATA[<p>Any chance to find out the login id who created the stored procedure ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: karthick</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-178271</link>
		<dc:creator><![CDATA[karthick]]></dc:creator>
		<pubDate>Thu, 13 Oct 2011 06:47:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-178271</guid>
		<description><![CDATA[Hi,


purchase table                          sales table
PID  PQty                               PID          SQty
  1       10                                  1               5
   2        5                                  2               3
   3        7                                  1               4
   1        5

Output Should be
PId     PQty          SQty        Remaining Qty
 1          15              9                   6
  2           5              3                    2
 3            7              0                     7

Can any one help me to get this output
in a single query]]></description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>purchase table                          sales table<br />
PID  PQty                               PID          SQty<br />
  1       10                                  1               5<br />
   2        5                                  2               3<br />
   3        7                                  1               4<br />
   1        5</p>
<p>Output Should be<br />
PId     PQty          SQty        Remaining Qty<br />
 1          15              9                   6<br />
  2           5              3                    2<br />
 3            7              0                     7</p>
<p>Can any one help me to get this output<br />
in a single query</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-170600</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Thu, 22 Sep 2011 08:49:05 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-170600</guid>
		<description><![CDATA[By default sa user can modify the procedure]]></description>
		<content:encoded><![CDATA[<p>By default sa user can modify the procedure</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Maria Loretta Escobal</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-170254</link>
		<dc:creator><![CDATA[Maria Loretta Escobal]]></dc:creator>
		<pubDate>Wed, 21 Sep 2011 10:11:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-170254</guid>
		<description><![CDATA[How will i know the SQL Account used to modify the stored procedure?]]></description>
		<content:encoded><![CDATA[<p>How will i know the SQL Account used to modify the stored procedure?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rajesh</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-163489</link>
		<dc:creator><![CDATA[Rajesh]]></dc:creator>
		<pubDate>Tue, 30 Aug 2011 06:23:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-163489</guid>
		<description><![CDATA[THIS SHOWING SOME ERROR PLEASE DO THE FAVOUR TO SHOOT THIS




CREATE PROCEDURE INCREASE 


DECLARE
@INCR DATETIME

AS


@INCR=SELECT     MAX(MonthDate) AS MDATE FROM     VMONTHDATE
@INCR=@INCR+1
INSERT INTO VMONTHDATE(MonthDate) VALUES (@INCR) 
GO]]></description>
		<content:encoded><![CDATA[<p>THIS SHOWING SOME ERROR PLEASE DO THE FAVOUR TO SHOOT THIS</p>
<p>CREATE PROCEDURE INCREASE </p>
<p>DECLARE<br />
@INCR DATETIME</p>
<p>AS</p>
<p>@INCR=SELECT     MAX(MonthDate) AS MDATE FROM     VMONTHDATE<br />
@INCR=@INCR+1<br />
INSERT INTO VMONTHDATE(MonthDate) VALUES (@INCR)<br />
GO</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JJ</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-154571</link>
		<dc:creator><![CDATA[JJ]]></dc:creator>
		<pubDate>Sun, 07 Aug 2011 04:48:38 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-154571</guid>
		<description><![CDATA[Hello,

I want generate all the scripts of the tables and stored procedures modified between two dates. How can I do this?

Thanks]]></description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>I want generate all the scripts of the tables and stored procedures modified between two dates. How can I do this?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: LA</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-151110</link>
		<dc:creator><![CDATA[LA]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 18:29:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-151110</guid>
		<description><![CDATA[I noticed that the modify_date on all of my objects is referencing the date we upgraded from SQL 2005 to SQL 2008R2. Is there any other column I could use to determine the last revision date for an object that would not have changed as a result of the upgrade?]]></description>
		<content:encoded><![CDATA[<p>I noticed that the modify_date on all of my objects is referencing the date we upgraded from SQL 2005 to SQL 2008R2. Is there any other column I could use to determine the last revision date for an object that would not have changed as a result of the upgrade?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: [name removed as it was cell number]</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-151035</link>
		<dc:creator><![CDATA[[name removed as it was cell number]]]></dc:creator>
		<pubDate>Wed, 27 Jul 2011 12:18:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-151035</guid>
		<description><![CDATA[last update date find problem in sql [email removed]]]></description>
		<content:encoded><![CDATA[<p>last update date find problem in sql [email removed]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-149131</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Mon, 18 Jul 2011 11:30:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-149131</guid>
		<description><![CDATA[Can&#039;t you simple pass it as parameter?
where bin=@bin]]></description>
		<content:encoded><![CDATA[<p>Can&#8217;t you simple pass it as parameter?<br />
where bin=@bin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rave</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-148511</link>
		<dc:creator><![CDATA[Rave]]></dc:creator>
		<pubDate>Fri, 15 Jul 2011 15:09:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-148511</guid>
		<description><![CDATA[HI I am trying to create procedure with two columns and need perameter for Bins (if i select 30 then should dispaly 30, if I select 40 then should dispaly 40  ) for bin column. second column display all standard values up to 1000 rows like blow.


Bins         standard_normal_Values

1	-0.999325493
2	-0.99367071
3	-0.986924533
4	-0.982329311
5	-0.97467364
6	-0.970499059
7	-0.969153007
8	-0.968298082
9	-0.958441433
10	-0.958200417
11	-0.958079909
12	-0.957231805
13	-0.955901669
14	-0.954814823
15	-0.954814823
16	-0.95192263
17	-0.950481081
18	-0.950360572
19	-0.950360572
20	-0.947120498
21	-0.94448751
22	-0.94448751
23	-0.943175564
24	-0.94031293
25	-0.938766789
26	-0.938055109
27	-0.937936875
28	-0.936749984
29	-0.935681328
30	-0.93107019
	-0.928475856
	-0.923425887
	-0.922020718
	-0.921670562
	-0.918166734
	-0.913744316
	-0.910729341
	-0.909919891
	-0.907375579
	-0.906684363
	-0.904262834
	-0.903917226
	-0.901159183
	-0.899208317
	-0.896231995
	-0.895317953
	-0.894747245]]></description>
		<content:encoded><![CDATA[<p>HI I am trying to create procedure with two columns and need perameter for Bins (if i select 30 then should dispaly 30, if I select 40 then should dispaly 40  ) for bin column. second column display all standard values up to 1000 rows like blow.</p>
<p>Bins         standard_normal_Values</p>
<p>1	-0.999325493<br />
2	-0.99367071<br />
3	-0.986924533<br />
4	-0.982329311<br />
5	-0.97467364<br />
6	-0.970499059<br />
7	-0.969153007<br />
8	-0.968298082<br />
9	-0.958441433<br />
10	-0.958200417<br />
11	-0.958079909<br />
12	-0.957231805<br />
13	-0.955901669<br />
14	-0.954814823<br />
15	-0.954814823<br />
16	-0.95192263<br />
17	-0.950481081<br />
18	-0.950360572<br />
19	-0.950360572<br />
20	-0.947120498<br />
21	-0.94448751<br />
22	-0.94448751<br />
23	-0.943175564<br />
24	-0.94031293<br />
25	-0.938766789<br />
26	-0.938055109<br />
27	-0.937936875<br />
28	-0.936749984<br />
29	-0.935681328<br />
30	-0.93107019<br />
	-0.928475856<br />
	-0.923425887<br />
	-0.922020718<br />
	-0.921670562<br />
	-0.918166734<br />
	-0.913744316<br />
	-0.910729341<br />
	-0.909919891<br />
	-0.907375579<br />
	-0.906684363<br />
	-0.904262834<br />
	-0.903917226<br />
	-0.901159183<br />
	-0.899208317<br />
	-0.896231995<br />
	-0.895317953<br />
	-0.894747245</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vinod Soni</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-142999</link>
		<dc:creator><![CDATA[Vinod Soni]]></dc:creator>
		<pubDate>Wed, 22 Jun 2011 14:33:31 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-142999</guid>
		<description><![CDATA[Dear All,

I want to keep the history of any updations take place for any stored procedure ? not only the last modified date.

Suppose a SP &#039;ABC&#039;s definition has been modified 10 times from the creation date; i required the data of 10 times updation. If it comes with client machine id; it will be a great helpful to track the activities done on SP.]]></description>
		<content:encoded><![CDATA[<p>Dear All,</p>
<p>I want to keep the history of any updations take place for any stored procedure ? not only the last modified date.</p>
<p>Suppose a SP &#8216;ABC&#8217;s definition has been modified 10 times from the creation date; i required the data of 10 times updation. If it comes with client machine id; it will be a great helpful to track the activities done on SP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: audit</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-139183</link>
		<dc:creator><![CDATA[audit]]></dc:creator>
		<pubDate>Mon, 06 Jun 2011 08:21:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-139183</guid>
		<description><![CDATA[How do i get the user id of the person who altered store procedure along with modified date in SQL2000/2005/2008?Also how to configure SQL server for keeping the version history of SP changes?]]></description>
		<content:encoded><![CDATA[<p>How do i get the user id of the person who altered store procedure along with modified date in SQL2000/2005/2008?Also how to configure SQL server for keeping the version history of SP changes?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: madhivanan</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-134577</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Mon, 16 May 2011 10:18:39 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-134577</guid>
		<description><![CDATA[Why do you want to do this?]]></description>
		<content:encoded><![CDATA[<p>Why do you want to do this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jayant Dass</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-134233</link>
		<dc:creator><![CDATA[Jayant Dass]]></dc:creator>
		<pubDate>Fri, 13 May 2011 11:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-134233</guid>
		<description><![CDATA[Hi Mukund ,

My Question is little different , can we alter system stored procedure on MSSQL server 2005 ?


Thanks in Advance

Regards
jayant dass]]></description>
		<content:encoded><![CDATA[<p>Hi Mukund ,</p>
<p>My Question is little different , can we alter system stored procedure on MSSQL server 2005 ?</p>
<p>Thanks in Advance</p>
<p>Regards<br />
jayant dass</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mukund</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-126448</link>
		<dc:creator><![CDATA[Mukund]]></dc:creator>
		<pubDate>Mon, 04 Apr 2011 04:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-126448</guid>
		<description><![CDATA[declare @day as int 
set @day = 12
select * from 
(SELECT [name],create_date,modify_date,&#039;table&#039; type1,1 order1 FROM sys.tables 
union
SELECT [name],create_date,modify_date,&#039;view&#039; type1,2 order1 FROM sys.views
union
SELECT [name],create_date,modify_date,&#039;trigger&#039; type1,5 order1 FROM sys.triggers
union
SELECT [name],create_date,modify_date,&#039;sp&#039; type1,3 order1 FROM sys.procedures
WHERE [type] = &#039;P&#039; AND is_ms_shipped = 0 AND [name] NOT LIKE &#039;sp[_]%diagram%&#039;
union
select [name],create_date,modify_date,&#039;fn&#039; type1,4 order1 from sys.objects where type_desc like &#039;%function%&#039;)
as modify_table
where datediff(dd,modify_date,getdate())&lt;@day

ORDER BY order1,modify_date DESC]]></description>
		<content:encoded><![CDATA[<p>declare @day as int<br />
set @day = 12<br />
select * from<br />
(SELECT [name],create_date,modify_date,&#8217;table&#8217; type1,1 order1 FROM sys.tables<br />
union<br />
SELECT [name],create_date,modify_date,&#8217;view&#8217; type1,2 order1 FROM sys.views<br />
union<br />
SELECT [name],create_date,modify_date,&#8217;trigger&#8217; type1,5 order1 FROM sys.triggers<br />
union<br />
SELECT [name],create_date,modify_date,&#8217;sp&#8217; type1,3 order1 FROM sys.procedures<br />
WHERE [type] = &#8216;P&#8217; AND is_ms_shipped = 0 AND [name] NOT LIKE &#8216;sp[_]%diagram%&#8217;<br />
union<br />
select [name],create_date,modify_date,&#8217;fn&#8217; type1,4 order1 from sys.objects where type_desc like &#8216;%function%&#8217;)<br />
as modify_table<br />
where datediff(dd,modify_date,getdate())&lt;@day</p>
<p>ORDER BY order1,modify_date DESC</p>
]]></content:encoded>
	</item>
</channel>
</rss>
