Just to add to Aaron 's answer, this default trace is a lightweight trace
and, to avoid name confusion, it is not the blackbox trace.
The blackbox trace is heavier than the default trace and needs to be enabled
manually by using @options set to 8 (TRACE_PRODUCE_BLACKBOX) on
sp_trace_create.
Hope this helps,
Ben Nevarez
> If this is SQL Server 2005, there is a default "black box" trace that runs
> in the background by default. Here are some blog posts about it (including
[quoted text clipped - 18 lines]
> >
> > Donald
Aaron Bertrand [SQL Server MVP] - 27 Mar 2008 18:59 GMT
> Just to add to Aaron 's answer, this default trace is a lightweight trace
> and, to avoid name confusion, it is not the blackbox trace.
Yes, sorry about the confusion, bad choice of words on my part.
Donald - 27 Mar 2008 19:49 GMT
Thank you all.
>> Just to add to Aaron 's answer, this default trace is a lightweight trace
>> and, to avoid name confusion, it is not the blackbox trace.
>
> Yes, sorry about the confusion, bad choice of words on my part.
Kalen Delaney - 28 Mar 2008 03:12 GMT
Also, to add to the other answers, keep in mind that Profiler is just one
way to run a trace. Not only do the default system trace and blackbox traces
NOT need profiler, you can create your own server side traces that do not
need Profiler. Profiler is just a GUI, the real tracing is done on the SQL
Server itself. For a production server, it is recommended that you don't
trace using Profiler, because the overhead is too high. You should always
use server-side traces for production systems.

Signature
HTH
Kalen Delaney, SQL Server MVP
www.InsideSQLServer.com
http://DVD.kalendelaney.com
> Just to add to Aaron 's answer, this default trace is a lightweight trace
> and, to avoid name confusion, it is not the blackbox trace.
[quoted text clipped - 34 lines]
>> >
>> > Donald