Skip to content

Latest commit

 

History

History
53 lines (39 loc) · 2.01 KB

snapshots-fn-trace-getdata-transact-sql.md

File metadata and controls

53 lines (39 loc) · 2.01 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
snapshots.fn_trace_getdata (Transact-SQL)
snapshots.fn_trace_getdata (Transact-SQL)
rwestMSFT
randolphwest
03/03/2017
sql
system-objects
reference
snapshots.fn_trace_getdata
snapshots.fn_trace_getdata function
TSQL

snapshots.fn_trace_getdata (Transact-SQL)

[!INCLUDE SQL Server]

This function returns all the events captured for the specified trace.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

  
snapshots.fn_trace_gettable ( trace_info_id, start_time, end_time )  

Arguments

trace_info_id
The unique identifier for the primary key in the snapshots.trace_info table in the management data warehouse database. trace_info_id is int.

start_time
The time that the trace started. start_time is datetime.

end_time
The time that the trace ended. end_time is datetime.

Table Returned

Column name Data type Description
<All trace columns> <Varies> The trace data from the snapshots.trace_data table in the management data warehouse database.

A list of the columns for the specified trace can be obtained by using the following query:

SELECT * FROM sys.trace_columns

Note: The columns that are returned by the snapshots.fn_trace_gettable function correspond to the values in the name column in the sys.trace_columns system view. The only difference is that the GroupID column is not returned by the function.

Permissions

Requires SELECT permission for mdw_reader.

See Also

Data Collection