Anyone have any snippets for creating a SQL Server trace on the fly? I've found this on MSDN but it only seems to output to the file system. What about logging it to a DB table or returning it via some sort of UDF? Ideally it would be used to create a debugging tool, so it would be nice to wrap it up in something that could be turned on and off easily.
|
feedback
|
|
A Server side SQL Trace not using the rowset provider can only trace to the file system. Profiler offers the option of saving to a table but does this by consuming the rowset output and sending it back to the server which is quite inefficient. You can easily access these server side traces though as follows and load them into a table yourself (snippet below returns the output of the default trace)
| |||||||||||
feedback
|