| title | snapshots.fn_trace_getdata (Transact-SQL) | Microsoft Docs | |
|---|---|---|
| ms.custom | ||
| ms.date | 03/03/2017 | |
| ms.prod | sql | |
| ms.prod_service | database-engine | |
| ms.service | ||
| ms.component | system-functions | |
| ms.reviewer | ||
| ms.suite | sql | |
| ms.technology |
|
|
| ms.tgt_pltfrm | ||
| ms.topic | language-reference | |
| f1_keywords |
|
|
| dev_langs |
|
|
| helpviewer_keywords |
|
|
| ms.assetid | ac28ef48-f4f4-4bf2-ba22-d44e1be88172 | |
| caps.latest.revision | 19 | |
| author | rothja | |
| ms.author | jroth | |
| manager | craigg | |
| ms.workload | Inactive |
[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]
This function returns all the events captured for the specified trace.
Transact-SQL Syntax Conventions
snapshots.fn_trace_gettable ( trace_info_id, start_time, end_time )
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.
| 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_columnsNote: 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. |
Requires SELECT permission for mdw_reader.