sys.dm_xe_session_event_actions (Transact-SQL)
Returns information about event session actions. Actions are executed when events are fired. This management view aggregates statistics about the number of times an action has run, and the total run time of the action.
Column name |
Data type |
Description |
---|---|---|
event_session_address |
varbinary(8) |
The memory address of the event session. Is not nullable. |
action_name |
nvarchar(60) |
The name of the action. Is not nullable. |
action_package_guid |
uniqueidentifier |
The GUID for the package that contains the action. Is not nullable. |
event_name |
nvarchar(60) |
The name of the event that the action is bound to. Is not nullable. |
event_package_guid |
uniqueidentifier |
The GUID for the package that contains the event. Is not nullable. |
Permissions
Requires VIEW SERVER STATE permission on the server.
Relationship Cardinalities
From |
To |
Relationship |
---|---|---|
sys.dm_xe_session_event_actions.event_session_address |
sys.dm_xe_sessions.address |
Many-to-one |
sys.dm_xe_session_event_actions.action_name sys.dm_xe_session_event_actions.action_package_guid |
sys.dm_xe_objects.name sys.dm_xe_session_events.event_package_guid |
Many-to-one |
sys.dm_xe_session_event_actions.event_name sys.dm_xe_session_event_actions.event_package_guid |
sys.dm_xe_objects.name sys.dm_xe_objects.package_guid |
Many-to-one |