Information
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
No comments:
Post a Comment
‹
›
Home
View web version
No comments:
Post a Comment