SQL Server database last updated date time

后端 未结 3 1730
北荒
北荒 2021-02-08 01:14

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

3条回答
  •  不知归路
    2021-02-08 01:31

    Look in sys.objects should be enough, try this query

     select * from sys.objects
    order by modify_date desc
    

提交回复
热议问题