<?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, 10 Feb 2012 04:35:14 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<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>
	<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-122108</link>
		<dc:creator><![CDATA[Jayant dass]]></dc:creator>
		<pubDate>Sun, 06 Mar 2011 07:52: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-122108</guid>
		<description><![CDATA[Hi, 


can we modify system stored procedure on SQL server 2005 ?


Thanks in Advance

Thanks &amp; Regards
Jayant Dass]]></description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>can we modify system stored procedure on SQL server 2005 ?</p>
<p>Thanks in Advance</p>
<p>Thanks &amp; Regards<br />
Jayant Dass</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nitin</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-121957</link>
		<dc:creator><![CDATA[Nitin]]></dc:creator>
		<pubDate>Sat, 05 Mar 2011 05:46:09 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-121957</guid>
		<description><![CDATA[Hi Guys i have checked this query.. and this worked poperly…
This guy have great knowledge of Sql.]]></description>
		<content:encoded><![CDATA[<p>Hi Guys i have checked this query.. and this worked poperly…<br />
This guy have great knowledge of Sql.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ankit</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-119103</link>
		<dc:creator><![CDATA[ankit]]></dc:creator>
		<pubDate>Fri, 18 Feb 2011 09:18:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-119103</guid>
		<description><![CDATA[thanks FOR this post ....i REALLY NEEDED IT]]></description>
		<content:encoded><![CDATA[<p>thanks FOR this post &#8230;.i REALLY NEEDED IT</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reddy</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-115525</link>
		<dc:creator><![CDATA[Reddy]]></dc:creator>
		<pubDate>Tue, 01 Feb 2011 11:57:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-115525</guid>
		<description><![CDATA[@Triveni....


its ok..........]]></description>
		<content:encoded><![CDATA[<p>@Triveni&#8230;.</p>
<p>its ok&#8230;&#8230;&#8230;.</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-110476</link>
		<dc:creator><![CDATA[madhivanan]]></dc:creator>
		<pubDate>Tue, 11 Jan 2011 11:11: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-110476</guid>
		<description><![CDATA[Make sure to use unambigious date formats
http://beyondrelational.com/blogs/madhivanan/archive/2010/06/03/understanding-datetime-column-part-ii.aspx]]></description>
		<content:encoded><![CDATA[<p>Make sure to use unambigious date formats<br />
<a href="http://beyondrelational.com/blogs/madhivanan/archive/2010/06/03/understanding-datetime-column-part-ii.aspx" rel="nofollow">http://beyondrelational.com/blogs/madhivanan/archive/2010/06/03/understanding-datetime-column-part-ii.aspx</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srini</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-110426</link>
		<dc:creator><![CDATA[Srini]]></dc:creator>
		<pubDate>Tue, 11 Jan 2011 05:55: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-110426</guid>
		<description><![CDATA[SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = &#039;P&#039; and modify_date between &#039;10-Jan-2011&#039; and getdate()]]></description>
		<content:encoded><![CDATA[<p>SELECT name, create_date, modify_date<br />
FROM sys.objects<br />
WHERE type = &#8216;P&#8217; and modify_date between &#8217;10-Jan-2011&#8242; and getdate()</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ahmed</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-94274</link>
		<dc:creator><![CDATA[Ahmed]]></dc:creator>
		<pubDate>Tue, 19 Oct 2010 18:43: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-94274</guid>
		<description><![CDATA[Hi 
Dear All,

Already project developed. So there is some changes in the project. So whenever we are altering the procedures it is saving in a separate .sql file but in the same procedure. why it is happening like that. But i want to alter the procedure which is already there in the project.Please solve my problem]]></description>
		<content:encoded><![CDATA[<p>Hi<br />
Dear All,</p>
<p>Already project developed. So there is some changes in the project. So whenever we are altering the procedures it is saving in a separate .sql file but in the same procedure. why it is happening like that. But i want to alter the procedure which is already there in the project.Please solve my problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Abhishek</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-87083</link>
		<dc:creator><![CDATA[Abhishek]]></dc:creator>
		<pubDate>Wed, 08 Sep 2010 11:59:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-87083</guid>
		<description><![CDATA[Hi ,
When ever i create a store procedure like

ALTER PROCEDURE  uspAddAddressType
(
	@addressTypeName Varchar(30),
	@status varchar(30),
	@addedOn datetime,
	@addedBy varchar(30) 
	 
)
AS 
BEGIN 

 INSERT INTO addressType
	  ( addressTypeName,
	   [status],
	   addedBy,
	   addedOn
	   )
VALUES
	( @addressTypeName,
	  @status,
	  @addedBy,
	  GETDATE()
	  )
  END 

And Save next time when i see that procedure it display like 
ALTER PROCEDURE  [dbo].[uspAddAddressType]
(
	@addressTypeName Varchar(30),
	@status varchar(30),
	@addedOn datetime,
	@addedBy varchar(30) 
	 
)
AS 
BEGIN 

 INSERT INTO addressType
	  ( addressTypeName,
	   [status],
	   addedBy,
	   addedOn
	   )
VALUES
	( @addressTypeName,
	  @status,
	  @addedBy,
	  GETDATE()
	  )
  END 

Why it is happening. Any one can help me .]]></description>
		<content:encoded><![CDATA[<p>Hi ,<br />
When ever i create a store procedure like</p>
<p>ALTER PROCEDURE  uspAddAddressType<br />
(<br />
	@addressTypeName Varchar(30),<br />
	@status varchar(30),<br />
	@addedOn datetime,<br />
	@addedBy varchar(30) </p>
<p>)<br />
AS<br />
BEGIN </p>
<p> INSERT INTO addressType<br />
	  ( addressTypeName,<br />
	   [status],<br />
	   addedBy,<br />
	   addedOn<br />
	   )<br />
VALUES<br />
	( @addressTypeName,<br />
	  @status,<br />
	  @addedBy,<br />
	  GETDATE()<br />
	  )<br />
  END </p>
<p>And Save next time when i see that procedure it display like<br />
ALTER PROCEDURE  [dbo].[uspAddAddressType]<br />
(<br />
	@addressTypeName Varchar(30),<br />
	@status varchar(30),<br />
	@addedOn datetime,<br />
	@addedBy varchar(30) </p>
<p>)<br />
AS<br />
BEGIN </p>
<p> INSERT INTO addressType<br />
	  ( addressTypeName,<br />
	   [status],<br />
	   addedBy,<br />
	   addedOn<br />
	   )<br />
VALUES<br />
	( @addressTypeName,<br />
	  @status,<br />
	  @addedBy,<br />
	  GETDATE()<br />
	  )<br />
  END </p>
<p>Why it is happening. Any one can help me .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Triveni Varma</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-84526</link>
		<dc:creator><![CDATA[Triveni Varma]]></dc:creator>
		<pubDate>Wed, 18 Aug 2010 13:02: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-84526</guid>
		<description><![CDATA[Its create_data and modify_date  and not created_date and modified_date.
Above command works fine :)]]></description>
		<content:encoded><![CDATA[<p>Its create_data and modify_date  and not created_date and modified_date.<br />
Above command works fine :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: MK</title>
		<link>http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-83100</link>
		<dc:creator><![CDATA[MK]]></dc:creator>
		<pubDate>Thu, 05 Aug 2010 08:41:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.sqlauthority.com/2007/08/10/sql-server-2005-find-stored-procedure-create-date-and-modified-date/#comment-83100</guid>
		<description><![CDATA[if you read the post it states create_date, modify_date

your relpy says invalid column created_date and invalid modified_date.

created_date != create_date &amp;&amp; modified_date != modify_date]]></description>
		<content:encoded><![CDATA[<p>if you read the post it states create_date, modify_date</p>
<p>your relpy says invalid column created_date and invalid modified_date.</p>
<p>created_date != create_date &amp;&amp; modified_date != modify_date</p>
]]></content:encoded>
	</item>
</channel>
</rss>

