Skip to content

Commit c436967

Browse files
Merge pull request #36162 from nzagorac-ms/patch-14
Update CES documentation
2 parents b003866 + b092d31 commit c436967

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

docs/relational-databases/system-stored-procedures/sys-sp-add-object-to-event-stream-group-transact-sql.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: sys.sp_add_object_to_event_stream_group adds an object to a stream
44
author: nzagorac-ms
55
ms.author: nzagorac
66
ms.reviewer: mathoma, mikeray, randolphwest
7-
ms.date: 12/17/2025
7+
ms.date: 01/07/2026
88
ms.service: sql
99
ms.subservice: system-objects
1010
ms.topic: "reference"
@@ -51,6 +51,9 @@ Specifies the name of the event stream group you want to add the table to. *@str
5151

5252
Specifies the name of the table you want to stream as part of the specified stream group. *@object_name* is **nvarchar(512)**, with no default, and can't be `NULL`.
5353

54+
> [!NOTE]
55+
> Only tables are currently supported. Configuring CES on views results in an error.
56+
5457
Use a two-part name for the column that includes both the schema name and column name. For example, a valid value is `dbo.Addresses`.
5558

5659
#### [ @include_all_columns = ] *include_all_columns*

docs/relational-databases/track-changes/change-event-streaming/configure.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description: Describes how to configure change event streaming.
44
author: nzagorac-ms
55
ms.author: nzagorac
66
ms.reviewer: mathoma, mikeray, randolphwest
7-
ms.date: 11/18/2025
7+
ms.date: 01/07/2026
88
ms.service: sql
99
ms.topic: how-to
1010
ms.custom:
@@ -535,7 +535,6 @@ The following limitations apply when using CES with Azure SQL Database:
535535
- CES emits events only for data changes from `INSERT`, `UPDATE`, and `DELETE` DML statements.
536536
- CES doesn't handle schema changes (DDL operations), which means it doesn't emit events for DDL operations. However, DDL operations aren't blocked, so if you execute them, the schema of subsequent DML events reflects the updated table structure. You're expected to gracefully handle events with the updated schema.
537537
- Currently, CES doesn't stream data that exists in a table before CES is enabled. Existing data isn't seeded, or sent as a snapshot, when CES is enabled.
538-
- When JSON is the specified output format, large event messages might be split at approximately 25% of the configured maximum message size per stream group. This limitation doesn't apply to the binary output type.
539538
- If a message exceeds the Azure Event Hubs message size limit, the failure is currently only observable through Extended Events. CES xEvents are currently only available in SQL Server 2025, and not Azure SQL Database.
540539
- Renaming tables and columns configuired for CES isn't supported. Renaming a table or column fails. Database renames **are allowed**.
541540
- Microsoft Entra authentication for CES isn't currently available in SQL Server 2025.

0 commit comments

Comments
 (0)