Get the list of stored procedures created and / or modified on a particular date?

后端 未结 5 1562
深忆病人
深忆病人 2020-12-29 01:55

I want to find which stored procedure I\'ve created and also I want to find which stored procedure I\'ve modified in my SQL Server on a particular date like 27 september 201

5条回答
  •  情话喂你
    2020-12-29 02:10

    For SQL Server 2012:

    SELECT name, modify_date, create_date, type
    FROM sys.procedures
    WHERE name like '%XXX%' 
    ORDER BY modify_date desc
    

提交回复
热议问题