Can I upload the profiler trace file into reporting services to get a report...

  • I have the Trace file of profiler wih all securiy logins enabled.

    can I upload the profiler trace file into reporting services to get a report...

    Thanks

  • Typically you dump the trace file output into a SQL server table and then query against that

    USE Mydb

    GO

    SELECT * INTO mytracetable

    FROM fn_trace_gettable('c:\temp\mytrace.trc', default);

    GO

    -----------------------------------------------------------------------------------------------------------

    "Ya can't make an omelette without breaking just a few eggs" 😉

  • Thanks

    I have not the IIS on Database machine can I work on reporting services..

    Thanks

  • Yes

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 4 posts - 1 through 3 (of 3 total)

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