Showing posts with label Find Last updated stored procedures. Show all posts
Showing posts with label Find Last updated stored procedures. Show all posts

Monday, October 18, 2010

Sql - server - Find Last updated stored procedures

SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P'
ORDER BY modify_date desc, create_date desc