In Microsoft SQL Server, you can easily retrieve this information from the sys.procedures catalog view. The following query demonstrates this. SELECT Of course you can take it a step further by limiting the results to a period of time where you know that no changes should have been made. For example, the following query lists all stored procedures that have been changed since August 1, 2007 (the time I last visited this client). SELECT [name] ,modify_date ,create_date ,* FROM sys.procedures WHERE modify_date > '2007-08-01' |
Sunday, September 9, 2007
Determining when a procedure has been altered
Posted by Prakash at 8:52 PM
Labels: SQL, Sql Server 2000, Sqlserver 2005
Subscribe to:
Post Comments (Atom)
0 comments:
Post a Comment