SQLServer中按关键字查找信息
#如何查询数据库程序中含有那些关键字
在一个存储过程中查询关键字
select b.name ,a.text from syscomments a,sysobjects b
where
charindex(‘无效的SKU’,a.text)>0 and
object_id(b.name)=a.id and b.xtype in(‘P’,‘TR’)
在所有数据库项目中查找关键字
SELECT obj.Name , sc.TEXT
FROM syscomments sc
INNER JOIN sysobjects obj ON sc.Id = obj.ID
WHERE sc.TEXT LIKE ‘%线边%’