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?
You could try the Schema Changes History report from SQL Server Management Studio.
Right click on database – Reports – Standard Reports – Schema Changes History