获取存储过程的创建时间,更新时间
存储过程
select name,object_id,create_date,modify_datefrom sys.objects where type = 'P '
表
select name,object_id,create_date,modify_datefrom sys.objects where type = 'u' order by modify_date desc