SQLServer2008找出所有包含172.17.224.40字样的存储过程

SQLServer2008
找出所有包含172.17.224.40的存储过程
 
select distinct name
from syscomments a,sysobjects b
where a.id=b.id and b.xtype='v' and text like '%172.17.224.40%'
 
找出所有包含172.17.224.40的视图
select distinct name
from syscomments a,sysobjects b
where a.id=b.id and b.xtype='p' and text like '%172.17.224.40%'

posted on 2015-06-03 13:54  黃廣訊  阅读(299)  评论(0编辑  收藏  举报

导航