The following query renders Last_Altered dates for programmabilty objects including stored procedures, functions, etc.
Use my_database
GO
SELECT ROUTINE_NAME,ROUTINE_TYPE,CREATED,LAST_ALTERED
FROM INFORMATION_SCHEMA.ROUTINES
ORDER BY LAST_ALTERED DESC
Is there a similar query I can use to identify Last_Altered dates for tables, views, indexes, etc?
BT