posted 2/21/2012 by Raghav Khunger
Below is the script to get list of stored procedures in last n days.
SELECT [name] FROM sys.objects WHERE [type] = 'P' AND DATEDIFF(dd, [modify_date], GETDATE()) < 10
Above 10 is the number of days. You can change that value according to your need. Below is the output of my screen after running the above script on AdventureWorks DB:
What kind of email newsletter would you prefer to receive from CodeAsp.Net?18