I\'ve added and modified several (new and existing resp.) tables and stored procs, for a particular d
Hi you can get the changed/modified db object details with this query
select name,create_date,modify_date from sys.procedures order by modify_date desc
Thanks