2

我需要计算所有存储过程中某个特定单词的出现次数。

即在特定数据库中的所有存储过程中,单词“place”出现了多少次?

我试图使用游标来做到这一点,但我没有得到任何地方!

4

1 回答 1

5

我会使用object_definition函数并以这种方式sys.procedures查看:

declare @word varchar(128)
set @word = 'place'

select name, (len(object_definition(object_id)) -  len(replace(object_definition(object_id), @word, ''))) / len (@word) as qty
from sys.procedures
where object_definition(object_id) like '%'+@word+'%' and type = 'P'
order by name

在注释后添加,所有存储过程中出现的所有特定单词:

declare @word varchar(128)
set @word = 'place'

select sum((len(object_definition(object_id)) -  len(replace(object_definition(object_id), @word, ''))) / len (@word)) as qty
from sys.procedures
where object_definition(object_id) like '%'+@word+'%'

这是工作(并在评论后更新)示例:http ://sqlfiddle.com/#!3/a759c/7

于 2012-05-25T06:24:51.710 回答