1. sysobjects
SQL Server系统表讲解-LMLPHP
SQL Server系统表讲解-LMLPHP
 
2.syscomments
 
3.查询数据库中所有包含某文本的存储过程、视图和函数的SQL
select *
from sysobjects o, syscomments s
where o.id = s.id
and text like'%要查找的文字%'
and o.xtype ='P'
 
4.information_schema对象的使用
查询数据库中所有包含某文本的存储过程、视图和函数的SQL
select routine_name,routine_definition,routine_type
from information_schema.routines
where routine_definition like'%Parent%'
orderby routine_type
 
04-16 21:36
查看更多