搜索存储过程中的信息

select name
from sysobjects o, syscomments s
where o.id = s.id
and text like '%tempKYGS%'
and o.xtype = 'P'

原文地址:https://www.cnblogs.com/wolf12/p/3613034.html