获取存储过程的创建时间,更新时间
存储过程
select name,object_id,create_date,modify_date
from sys.objects where type = 'P '
表
select name,object_id,create_date,modify_date
from sys.objects where type = 'u' order by modify_date desc
发布时间: 2013-02-25 10:23:36 作者: rapoo
获取存储过程的创建时间,更新时间
存储过程
select name,object_id,create_date,modify_date
from sys.objects where type = 'P '
表
select name,object_id,create_date,modify_date
from sys.objects where type = 'u' order by modify_date desc