List out All SPs who has been CREATED in last 7 days

Professionaluser
Posted by Professionaluser under Sql Server category on | Points: 40 | Views : 897
Below query gives you the list of stored procedures which has been CREATED in last 7 days....
SELECT name, create_date
FROM sys.objects
WHERE type = 'P'
AND DATEDIFF(D,create_date, GETDATE()) < 7


Note : You can change the 7 number in the WHERE condition with N -- here N represents the number of days

Comments or Responses

Login to post response