//查询 数据库中存储过程最后修改的时间
select * from information_schema.routines order by Last_Altered desc
//查询数据库中表最后修改的时间
select * from sys.objects where type_desc = 'USER_TABLE' order by Modify_date desc
//查询 数据库中存储过程最后修改的时间
select * from information_schema.routines order by Last_Altered desc
//查询数据库中表最后修改的时间
select * from sys.objects where type_desc = 'USER_TABLE' order by Modify_date desc