Skip to content

Latest commit

 

History

History
42 lines (28 loc) · 2.41 KB

save-trace-results-to-a-file.md

File metadata and controls

42 lines (28 loc) · 2.41 KB
title description author ms.author ms.date ms.service ms.topic
Save Trace Results to a File
Save Trace Results to a File
MashaMSFT
mathoma
03/14/2017
sql
conceptual

Save Trace Results to a File

[!INCLUDE SQL Server] You can save trace results to a file. A trace file is a file where the trace results are written. A trace file can be located either in a local directory (such as C:\foldername\filename.trc) or a network directory (such as \\computername\sharename\filename.trc).

You can use the trace files to do the following:

  • Replay traces

  • Audit [!INCLUDEssNoVersion]

  • Conduct performance analysis

  • Correlate trace events with performance counters to enhance problem detection

  • Perform Database Engine Tuning Advisor analysis

  • Carry out query optimization

[!INCLUDEssNoVersion] saves trace results to a file when a path and file name are specified for the @tracefile argument of the stored procedure sp_trace_create.

Note

If a path is specified to the sp_trace_create stored procedure for saving the trace file, the directory must be accessible to the server. Also be aware that if a local directory is specified to sp_trace_create, it is a local directory on the server computer.

If [!INCLUDEssSqlProfiler] is used, it allows you to save trace results to a file or to a table. Saving trace results to a table allows the same access as saving the trace to a file plus you can query the table to search for specific events.

For more information about saving trace results, see Save Trace Results to a Table (SQL Server Profiler) and Save Trace Results to a File (SQL Server Profiler).

See Also

sp_trace_create (Transact-SQL)
Create a Trace (Transact-SQL)
Create a Trace (SQL Server Profiler)