How can I find the last modified date, modified user of an stored procedure in SQL Server 2008?

前端 未结 8 686
无人共我
无人共我 2021-02-01 23:50

I need to find the user name of the person who modified a particular stored procedure.

How do I find out when a stored procedure was last modified or compiled in Oracle?

8条回答
  •  悲哀的现实
    2021-02-01 23:58

    I tried the following query and it worked for me:

    SELECT *
    FROM sys.objects
    WHERE type = 'P'
    ORDER BY modify_date DESC
    

    This query is for stored procedures.

提交回复
热议问题