当前位置: 代码迷 >> SQL >> SQLServer2008找到所有包含172.17.224.40字样的存储过程
  详细解决方案

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

热度:46   发布时间:2016-05-05 10:20:20.0
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%'
  相关解决方案