怎么防止SQL SERVER的事件跟踪器跟踪软件的脚本

如何防止SQL SERVER的事件跟踪器跟踪软件的脚本?
如何防止SQL   SERVER的事件跟踪器跟踪软件的脚本?

------解决方案--------------------
http://community.csdn.net/Expert/topic/5227/5227882.xml?temp=.1036341


http://blog.csdn.net/sxycgxj/archive/2006/06/20/815787.aspx
--禁止事件探查器
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 事件探查器未启用 '