Shawn Cicoria - CedarLogic

Perspectives and Observations on Technology

Recent Posts

Sponsors

Tags

General





Community

Email Notifications

Blogs I Read

Archives

Other

Use OpenDNS

November 2007 - Posts

How to get a list of SQL Procedures, Functions, Views that have recently change?

Today, I needed a quick view of what objects in a SQL DB had changed.  The following get's me that in a nice list:

SELECT [name], [type], create_date, modify_date
FROM sys.objects
WHERE [type] in ('P', 'FN', 'V')

order by Modify_Date desc



                
Posted: 11-15-2007 11:56 AM by cicorias | with no comments
Filed under: