How to find the Procedure Created and Modified date


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

Comments