Using SQL Server 2005 I want to see when a certain procedure has been modified. With this query I get the last modified date:
SELECT name, create_date, modify_date
FROM sys.objects
WHERE name = 'name_of_proc'
I need to get when it was modified before that or preferably a list of all modifications. Is that possible?