Changed Datetime in Procedures.

Why does not SQL Server display the date and time a procedure was last changed? i have run into this issue many times and use the script below to get the changed date for the procedures in SQL. you can change the value in the [Type] to get results for different objects in SQL.

select * from sys.objects
where [type] = 'P'
and modify_date >= '05/01/2009'

Comments

Popular posts from this blog

Print from WPF using ReportViewer Control

Printing SSRS 2008 R2 Reports from C#.

Using IOptions class in .Net Core Unit Testing.