I need to check when function was changed last time. I know how to check creation date (it is in function properties window in SQL Server Management Studio). I found tha
Try this for stored procedures:
SELECT name, create_date, modify_date FROM sys.objects WHERE type = 'P' AND name = 'myProc'
For SQL 2000 I would use:
SELECT name, crdate, refdate FROM sysobjects WHERE type = 'P' ORDER BY refdate desc