Foxtable(狐表)用户栏目专家坐堂 → 这个SQL代码如何在狐表中运行?


  共有8609人关注过本帖树形打印复制链接

主题:这个SQL代码如何在狐表中运行?

帅哥哟,离线,有人找我吗?
lihe60
  1楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:狐神 帖子:6843 积分:43298 威望:0 精华:0 注册:2009/3/2 14:07:00
这个SQL代码如何在狐表中运行?  发帖心情 Post By:2012/1/18 11:01:00 [只看该作者]

if object_id('p_getlinkinfo','P')is not null drop proc p_getlinkinfo
go
create proc p_getlinkinfo  
@dbname sysname=null, --要查詢的數據庫名,默認表示所有 
@includeip bit=0      --是否顯示IP信息
as  
  begin
    declare @dbid int  
    set @dbid=db_id(@dbname)
    if object_id('tempdb..#tb')is not null drop table #tb
    if object_id('tempdb..#ip')is not null drop table #ip   
    create table #tb
       (id int identity(1,1),
        dbname sysname,
        hostname nchar(128),
        loginname nchar(128),
        net_address nchar(12),
        net_ip nvarchar(15),
        prog_name   nchar(128))  
    insert into #tb(hostname,dbname,net_address,loginname,prog_name)  
    select distinct hostname,
         db_name(dbid),
         net_address,
         loginame,
         program_name
    from master..sysprocesses  
    where hostname!=''and(@dbid is null or dbid=@dbid)  
    if @includeip=0 goto lb_show --不顯示IP  
    declare @sql varchar(500),@hostname nchar(128),@id int  
    create table #ip(hostname nchar(128),a varchar(200))  
    declare tb cursor local for select distinct hostname from #tb  
    open tb  
    fetch next from tb into @hostname  
    while @@fetch_status=0  
    begin  
     set @sql='ping   '+@hostname+'   -a   -n   1   -l   1'  
     insert #ip(a) exec master..xp_cmdshell @sql  
     update #ip    set  hostname=@hostname where hostname is null  
     fetch next from tb into @hostname  
    end  
    update #tb set net_ip=left(a,patindex('%:%',a)-1)  
    from #tb a inner join
    (select hostname,a=substring(a,patindex('Ping statistics for %:%',a)+20,20)
    from #ip  
    where a like'Ping statistics for %:%')b
    on a.hostname=b.hostname  
lb_show:  
    select   id,
           dbname,
           hostname,
           loginname,
           net_address,
           net_ip,
           prog_name  
    from #tb  
  end 
  go    
exec p_getlinkinfo @dbname='DB_WIP',@includeip=1

 回到顶部
帅哥哟,离线,有人找我吗?
lihe60
  2楼 | 信息 | 搜索 | 邮箱 | 主页 | UC


加好友 发短信
等级:狐神 帖子:6843 积分:43298 威望:0 精华:0 注册:2009/3/2 14:07:00
  发帖心情 Post By:2012/1/18 11:01:00 [只看该作者]

也可以转换成狐表可执行语句。

 回到顶部