66. 根据关键字查找对应执行的存储过程

select distinct name
from sysobjects o, syscomments s
where o.id = s.id
and text like '%t_Entry%'
and o.xtype = 'P'
order by name

原文地址:https://www.cnblogs.com/zkx4213/p/4444273.html