Get list of all procedures created on a particular date in a database
To get the list of all the procedures created on a particular date in a data base, you can use this query.
Go
select name from sys.objects
where type = 'P'
and create_date=@yourdate
Go