首页 > 开发 > 综合 > 正文

如何实时查看数据库当前活动连接

2024-07-21 02:06:01
字体:
来源:转载
供稿:网友

原来一直被这个问题所困扰,前些天在网上偶然发现解决的办法。现分享如下:
基本语句为 sp_who
我们可以把查询结果插入到我们自己定义的表(monitoruser)中
基本语句为
create table monitoruser
(                  spid int, 
                   ecid int,
                   status varchar(200),
                   loginame varchar(200),
                   hostname varchar(200),         //根据sp_who的结果新建表结构          
                   blk varchar(200),
                   dbname varchar(200),
                   cmd varchar(200),
                   [datetime] [datetime] not null
 )
alter table [dbo].[monitoruser] with nocheck add
constraint [datetime] default (getdate()) for[datetime]  //自动获取时间插到datetime列中
go
insert into monitoruser(spid,ecid,status,loginame,hostname,blk,dbname,cmd)
exec ('sp_who')    //执行sp_who,将结果插入到monitoruser中

国内最大的酷站演示中心!
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表