SQL 查询存储过程

select distinct name 
from syscomments a,sysobjects b 
where a.id=b.id and b.xtype='p' --and text like '%my_sp%' 
原文地址:https://www.cnblogs.com/ilookbo/p/4177686.html