How to import SQLProfiler trace into SQLSERVER database

  • Hi,

    Do you know a script which allow to import into a table in SQLSERVER, a trace file generated by SQLProfiler ?

    Thanks in advance.

  • Look in Books OnLine for function fn_trace_gettable

    Example usage:

    SELECT *

    INTO temp_trc

    FROM ::fn_trace_gettable('c:\my_trace.trc', default)

    SQL = Scarcely Qualifies as a Language

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply