Is there any sql script to find out when the database in SQL server is last updated?
I want to know the last updated date time for the changes done on meta data of the
This will return last modified date time + name of updated item + description what was updated (table, stored procedure, etc)
SELECT TOP 1 name, modify_date, type_desc FROM sys.objects ORDER BY modify_date DESC