SQL查询表和存储过程等数据对象创建修改日期状态等

--存储过程
select * from sys.all_objects where object_type='PROCEDURE' and object_name like ('***%');
--触发器
select name,modify_date from sys.all_objects where object_type='TRIGGER' and object_name like ('***%');

--函数
select name,modify_date from sys.all_objects where object_type='FUNCTION' and object_name like ('***%');
--表
select * from sys.all_objects where object_type='TABLE' and object_name like ('***%');

原文地址:https://www.cnblogs.com/cyblogs/p/5481854.html