A Microsoft extension to the ANSI SQL language that includes procedural programming, local variables, and various support functions.
I'm looking for Last modified Database information either table data changes or objects structure(SP,View,schema etc.) inside the database...
You get the latest modify date/time of objects with
select max(obj.modify_date) AS last_modify_date
from sys.objects as obj