Technical Article

List of Stored Procedures modified in past 7 days

,

This simple script helps to identify stored procedures that have been changed / modified in past 7 days.

SELECT * FROM sys.objects
WHERE TYPE = 'P' AND DATEDIFF(D,modify_date, GETDATE()) < 7

Rate

4 (10)

You rated this post out of 5. Change rating

Share

Share

Rate

4 (10)

You rated this post out of 5. Change rating