Luouy~羽林
学问如逆水行舟,不进则退; 有知识的人不实践,等于一只蜜蜂不酿蜜; 我们可以由读书而收集知识,但必须利用思考把糠和谷子分开

通过返回的字符串截取出IP

declare @ip varchar(15),@str varchar(100)
set @str='ping '+Host_Name()--通过ping 主机名来获取返回的字符串,ping 后要加空格
create table #temp(ipStr varchar(300))
insert into #temp exec master..xp_cmdshell @str
select top 1 @ip=replace(left(ipStr,charindex(':',ipStr)-1),'Reply from ','')--替换的时候Reply from
from #temp where ipStr like 'Reply from %:%'
drop table #temp
select @ip

posted on 2010-12-01 14:52  羽林.Luouy  阅读(1943)  评论(0编辑  收藏  举报