sql server查询数据库中所有包含某文本的存储过程、视图和函数的SQL

时间:2022-03-22 00:31:18
方法一:
Sql代码 
select * 
from sysobjects o, syscomments s 
where o.id = s.id 
and text like '%yyao%' 
and o.xtype = 'P' 将yyao替换成自己要查找的文本 

方法二:
Sql代码 
select routine_name,routine_definition,routine_type 
from information_schema.routines 
where routine_definition like '%Parent%' 
order by routine_type 
select routine_name,routine_definition,routine_type
from information_schema.routines
where routine_definition like '%Parent%'
order by routine_type 将Parent替换成自己要查找的文本 

方法三:
Sql代码   

sp_depends customer 此方法只能查找数据库对象,如表、视图、存储过程、函数