SQLServer2008找出所有包含172.17.224.40字樣的存儲(chǔ)過程SQLServer2008找出所有包含172.17.224.40的存儲(chǔ)過程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%'