I\'ve added and modified several (new and existing resp.) tables and stored procs, for a particular d
Query the sys.objects
table to find the objects that changed and filter by modify_date
and type
; U = User table, P = Stored procedure.
select *
from sys.objects
where (type = 'U' or type = 'P')
and modify_date > dateadd(m, -3, getdate())
This approach will tell you what objects have changed, but not the specific changes.