Skip to content

Commit 1ea9215

Browse files
20211110 1055 acrolinx
1 parent acd35c9 commit 1ea9215

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

docs/relational-databases/system-dynamic-management-views/sys-dm-xe-sessions-transact-sql.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ ms.author: wiassaf
3636
|large_buffer_size|**bigint**|The large buffer size, in bytes. Is not nullable.|
3737
|total_buffer_size|**bigint**|The total size of the memory buffer that is used to store events for the session, in bytes. Is not nullable.|
3838
|buffer_policy_flags|**int**|A bitmap that indicates how session event buffers behave when all the buffers are full and a new event is fired. Is not nullable.|
39-
|buffer_policy_desc|**nvarchar(256)**|A description that indicates how session event buffers behave when all the buffers are full and a new event is fired. Is not nullable. `buffer_policy_desc` can be one of the following:<br /><br /> Drop event<br />Do not drop events<br />Drop full buffer<br />Allocate new buffer|
39+
|buffer_policy_desc|**nvarchar(256)**|A description that indicates how session event buffers behave when all the buffers are full and a new event is fired. Is not nullable. `buffer_policy_desc` can be one of the following values:<br /><br /> Drop event<br />Do not drop events<br />Drop full buffer<br />Allocate new buffer|
4040
|flags|**int**|A bitmap that indicates the flags that have been set on the session. Is not nullable.|
41-
|flag_desc|**nvarchar(256)**|A description of the flags set on the session. Is not nullable. `flag_desc` can be any combination of the following:<br /><br /> Flush buffers on close<br />Dedicated dispatcher<br />Allow recursive events|
41+
|flag_desc|**nvarchar(256)**|A description of the flags set on the session. Is not nullable. `flag_desc` can be any combination of the following values:<br /><br /> Flush buffers on close<br />Dedicated dispatcher<br />Allow recursive events|
4242
|dropped_event_count|**int**|The number of events that were dropped when the buffers were full. This value is **0** if `buffer_policy_desc` is "Drop full buffer" or "Do not drop events". Is not nullable.|
4343
|dropped_buffer_count|**int**|The number of buffers that were dropped when the buffers were full. This value is **0** if `buffer_policy_desc` is set to "Drop event" or "Do not drop events". Is not nullable.|
4444
|blocked_event_fire_time|**int**|The length of time that event firings were blocked when buffers were full. This value is **0** if `buffer_policy_desc` is "Drop full buffer" or "Drop event". Is not nullable.|
4545
|create_time|**datetime**|The time that the session was created. Is not nullable.|
4646
|largest_event_dropped_size|**int**|The size of the largest event that did not fit into the session buffer. Is not nullable.|
47-
|session_source|**nvarchar(256)**| The scope of the session. Is not nullable. `session_source` can be one of the following:<BR><BR>server = session scoped to the server, including user sessions.<BR>internal = certain internal sessions, such as the sp_server_diagnostics session.<BR>*database_name* = for database-scoped sessions in [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] only. Currently, this is not exposed.|
48-
|buffer_processed_count|**bigint**|**Applies to:** SQL Server 2017 and later. The total number of buffers processed by the session. This accumulates from start of session. Is not nullable.|
49-
|buffer_full_count|**bigint**|**Applies to:** SQL Server 2017 and later. The number of buffers that were full when they were processed. This accumulates from start of session. Is not nullable.|
50-
|total_bytes_generated|**bigint**|**Applies to:** SQL Server 2017 and later. The number of actual bytes that the extended events session has generated. This information is collected when the session is processing buffers. This applies to the file target only. No tracking for other targets. |
47+
|session_source|**nvarchar(256)**| The scope of the session. Is not nullable. `session_source` can be one of the following values:<BR><BR>server = session scoped to the server, including user sessions.<BR>internal = certain internal sessions, such as the `sp_server_diagnostics` session.<BR>*database_name* = for database-scoped sessions in [!INCLUDE[ssSDSfull](../../includes/sssdsfull-md.md)] only. Currently, this is not exposed.|
48+
|buffer_processed_count|**bigint**|**Applies to:** SQL Server 2017 and later. The total number of buffers processed by the session and accumulates from start of session. Is not nullable.|
49+
|buffer_full_count|**bigint**|**Applies to:** SQL Server 2017 and later. The number of buffers that were full when they were processed and accumulates from start of session. Is not nullable.|
50+
|total_bytes_generated|**bigint**|**Applies to:** SQL Server 2017 and later. The number of actual bytes that the extended events session has generated. This information is collected when the session is processing buffers and applies to the file target only. No tracking for other targets. |
5151

5252
## Permissions
5353
Requires VIEW SERVER STATE permission on the server.

0 commit comments

Comments
 (0)