sql查询数据库中所有包含要查询内容的存储过程、视图等
select * from syscomments
where text like '%内容%'
select * from sysobjects
where id in (id_list)
and xtype= 'P'
select * from syscomments
where text like '%内容%'
select * from sysobjects
where id in (id_list)
and xtype= 'P'