首页 > 开发 > 综合 > 正文

禁止事件探查器

2024-07-21 02:11:52
字体:
来源:转载
供稿:网友
国内最大的酷站演示中心!
if   exists(select * from master.dbo.sysprocesses   where   program_name=n'sql 事件探查器')  
  begin
   declare tb cursor local  for  
    select 'kill '+rtrim(spid) from master.dbo.sysprocesses  
           where program_name=n'sql 事件探查器'  
   declare @s nvarchar(100)  
   open tb fetch tb into @s  
   while @@fetch_status=0  
    begin  
     exec(@s)  
     fetch tb into   @s  
    end  
   close tb    
   deallocate tb  
  end
else
  print 'sql 事件探查器未启用'
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表