In SQL 2000, where is the name of the system table which retains the TRACE attributes? (not trace data!!)
In SQL 2005, I can issue:
SELECT ID FROM sys.traces WHERE path = 'F:\SQLTraceData\my_trace.trc') ----to identify a specific trace "ID" to operate on.
I am aware of these statments:
SELECT * FROM :: fn_trace_getinfo(default)
exec sp_trace_setstatus 2, 0
exec sp_trace_setstatus 2, 2
But I want to identify the actual TRACE "ID" based on the name of the .trc file in SQL 2000
BT