Find recent object changes in SQL Server Database

前端 未结 3 1592
闹比i
闹比i 2021-02-03 10:31

I\'ve added and modified several (new and existing resp.) tables and stored procs, for a particular d

3条回答
  •  春和景丽
    2021-02-03 10:44

    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

提交回复
热议问题