• 软件测试技术
  • 软件测试博客
  • 软件测试视频
  • 开源软件测试技术
  • 软件测试论坛
  • 软件测试沙龙
  • 软件测试资料下载
  • 软件测试杂志
  • 软件测试人才招聘
    暂时没有公告

字号: | 推荐给好友 上一篇 | 下一篇

用T-SQL获得当前连接客户端IP和机器名

发布: 2007-6-21 12:06 | 作者:   | 来源:   | 查看: 57次 | 进入软件测试论坛讨论

领测软件测试网

   
  Create proc usp_getClient_infor
  as
  set nocount on
  
  Declare @rc int
  Declare @RowCount int
  
  Select @rc=0
  Select @RowCount=0
  
  begin

  --//create temp table ,save sp_who information
   create table #tspid(
   spid int null,
   ecid int null,
   status nchar(60) null,
   loginname nchar(256) null,
   hostname nchar(256) null,
   blk bit null,
   dbname nchar(256) null,
   cmd nchar(32)
   )
  
  --//create temp table save all SQL client IP and hostname and login time
  Create table #userip(
   [id]int identity(1,1),
   txt varchar(1000),
  )
  
  --//Create result table to return recordset
  Create table #result(
   [id]int identity(1,1),
   ClientIP varchar(1000),
   hostname nchar(256),
   login_time datetime default(getdate())
  
   )
  --//get host name by exec sp_who ,insert #tspid from sp_who,
  insert into #tspid(spid,ecid,status,loginname,hostname,blk,dbname,cmd) exec sp_who
  
  declare @cmdStr varchar(100),
   @hostName nchar(256),
   @userip varchar(20),
   @sendstr varchar(100)
  
  
  --//declare a cursor from table #tspid
  declare tspid cursor
  for select distinct hostname from #tspid with (nolock) where spid>50
  for read only
  
  open tspid
    fetch next from tspid into @hostname
    While @@FETCH_STATUS = 0
    begin
   select @cmdStr='ping '+rtrim(@hostName)
  
   insert into #userip(txt) exec master..xp_cmdshell @cmdStr
  
   select @rowcount=count(id) from #userIP
  
  
   if @RowCount=2 --//no IP feedback package
   begin
   insert into #Result(ClientIP,hostname) values('Can not get feedback package from Ping!',@hostname)
   end
   if @RowCount>2
   begin
   select @userip=substring(txt,charindex('[',txt)+1,charindex(']',txt)-charindex('[',txt)-1)
   from #userIP
   where txt like 'Pinging%'
   
   insert into #Result(ClientIP,hostname) values(@userIP,@hostname)
   end
   select @rc=@@error
   if @rc=0
   truncate table #userip --//clear #userIP table
  
    fetch next from tspid into @hostname
   end
  
  close tspid
  deallocate tspid
  
  select * from #result with(nolock)
  
  drop table #tspid
  drop table #userip
  drop table #result
  end
  go
  exec usp_getClient_infor

延伸阅读

文章来源于领测软件测试网 https://www.ltesting.net/


关于领测软件测试网 | 领测软件测试网合作伙伴 | 广告服务 | 投稿指南 | 联系我们 | 网站地图 | 友情链接
版权所有(C) 2003-2010 TestAge(领测软件测试网)|领测国际科技(北京)有限公司|软件测试工程师培训网 All Rights Reserved
北京市海淀区中关村南大街9号北京理工科技大厦1402室 京ICP备10010545号-5
技术支持和业务联系:info@testage.com.cn 电话:010-51297073

软件测试 | 领测国际ISTQBISTQB官网TMMiTMMi认证国际软件测试工程师认证领测软件测试网