marty001 发表于 2016-11-8 12:07:47

SQL Server中查找包含某个文本的存储过程

SELECT name
from sysobjects o,syscomments s
where o.id=s.id
and text LIKE '%text%'
and o.xtype='p'
页: [1]
查看完整版本: SQL Server中查找包含某个文本的存储过程