Friday, February 17, 2017

Find last modified date of stored procedure or function in SQL server

SELECT name, create_date, modify_date
FROM sys.objects
WHERE type = 'P' order by modify_date desc

No comments:

Post a Comment