Skip to content

Latest commit

 

History

History
86 lines (68 loc) · 3.46 KB

File metadata and controls

86 lines (68 loc) · 3.46 KB
title sys.fn_trace_geteventinfo (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
fn_trace_geteventinfo
fn_trace_geteventinfo_TSQL
dev_langs
TSQL
helpviewer_keywords
events [SQL Server], status information
fn_trace_geteventinfo function
sys.fn_trace_geteventinfo function
status information [SQL Server], events
ms.assetid 5b1c858a-ca43-4e2b-9d67-8654daaf0cc5
caps.latest.revision 35
author JennieHubbard
ms.author jhubbard
manager jhubbard

sys.fn_trace_geteventinfo (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx_md]

Returns information about an event being traced.

Important

[!INCLUDEssNoteDepFutureAvoid] Use Extended Events instead.

Applies to: [!INCLUDEssNoVersion] ([!INCLUDEssKatmai] through current version).

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
fn_trace_geteventinfo ( trace_id )  

Arguments

trace_id
Is the ID of the trace. trace_id is int, with no default.

Tables Returned

Column name Data type Description
eventid int ID of the traced event
columnid int ID numbers of all columns collected for each event

Remarks

When passed the ID of a specific trace, fn_trace_geteventinfo returns information about that trace. When passed an invalid ID, this function returns an empty rowset.

Permissions

Requires ALTER TRACE permission on the server.

Examples

The following example returns information about trace number 2.

SELECT * FROM fn_trace_geteventinfo(2) ;  
GO  
  

See Also

sp_trace_setevent (Transact-SQL)
sp_trace_setfilter (Transact-SQL)
Create a Trace (Transact-SQL)
sp_trace_create (Transact-SQL)
sp_trace_generateevent (Transact-SQL)
sp_trace_setstatus (Transact-SQL)
sys.fn_trace_getinfo (Transact-SQL)
sys.fn_trace_gettable (Transact-SQL)
sys.fn_trace_getfilterinfo (Transact-SQL)