打赏

查询存储过程的信息,如创建修改时间

方式一:@参考博客

select * 
from sys.procedures
WHERE name = 'proc_name'


方式二:@参考博客

select *
FROM sys.all_objects
where type_desc = N'SQL_STORED_PROCEDURE' and name = 'proc_name';

posted @ 2018-08-09 13:44  每天都要学一点  阅读(270)  评论(0编辑  收藏  举报