sql查询数据库中所有包含要查询内容的存储过程、视图等

select * from syscomments

where text like '%内容%'

 

select * from sysobjects
where id in (id_list)
and xtype= 'P'

posted @ 2014-03-29 12:56  so...  阅读(415)  评论(0编辑  收藏  举报