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

后端 未结 5 1563
深忆病人
深忆病人 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:26

    You can try this query in any given SQL Server database:

    SELECT 
        name,
        create_date,
        modify_date
    FROM sys.procedures
    WHERE create_date = '20120927'  
    

    which lists out the name, the creation and the last modification date - unfortunately, it doesn't record who created and/or modified the stored procedure in question.

提交回复
热议问题