Check who modified the Stored Procedures in a Database Get link Facebook X Pinterest Email Other Apps September 23, 2013 use <database name> SELECT name, create_date, modify_date FROM sys.objects WHERE type = 'P' order by modify_date desc Read more