sql server中查找包含某个文本的存储过程
sysobjectssyscommentsxtype select name from sysobjects o,syscomments s where o.id=s.id and text like '%text%' and o.xtype='p'
sql server中查找包含某个文本的存储过程
sysobjectssyscommentsxtype select name from sysobjects o,syscomments s where o.id=s.id and text like '%text%' and o.xtype='p'