This very handy little script lists stored-procedures, tables, etc with the most recent at the top.
Great when you have been away, or even as the foundation of a migration tracking SSRS report.
-- WhatsNew.sql SELECT [type_desc], (SELECT [name] FROM sys.schemas WHERE schema_id = ob.schema_id) [schema], CASE parent_object_id WHEN '0' THEN [name] ELSE OBJECT_NAME (parent_object_id) + '.' + [name] END [object_name], create_date, modify_date -- or create-date if there isn't one FROM sys.objects ob WHERE is_ms_shipped = 0 -- exclude system-objects --AND [type] = 'P' -- just stored-procedures -- ORDER BY [schema] DESC, modify_date DESC ORDER BY modify_date DESC;