| SQL Trace Helper Functions
Description:Analyzing running SQL Trace traces requires a lot of decoding of integer values, which are documented in SQL Server Books Online; these functions make it easier to interpret traces by returning the textual description of the integer values that represent columns, events, logical and comparison operators. There are 4 functions:
Example:List all events and columns for trace ID 1 select [Event Name] = fn_trace_eventname(eventid), List the filter expression for trace ID 1 select [Column Name] = fn_trace_columnname(columnid), Results set: Column Name Logical Operator Comparison Operator Value Download: |
Questions or problems regarding this web site should be directed to Web Master. |