You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/relational-databases/system-stored-procedures/sys-sp-add-object-to-event-stream-group-transact-sql.md
description: "Adds an object to a stream group for the change event streaming feature introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)] by using Transact-SQL (T-SQL)."
Adds an object (that is, a table) to the stream group for the [change event streaming (CES)](../track-changes/change-event-streaming/overview.md) feature introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
26
+
Adds an object (that is, a table) to the stream group for the [change event streaming (CES)](../track-changes/change-event-streaming/overview.md) feature introduced in [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
27
27
28
-
> [!NOTE]
29
-
> Change event streaming is currently in **preview** for SQL Server 2025.
28
+
> [!NOTE]
29
+
> Change event streaming is currently in **preview** for [!INCLUDE [sssql25-md](../../includes/sssql25-md.md)].
Defines what columns to include within the payload of the message that streams the changes made to the specified table. *@include_all_columns* is **bit**, and can't be `NULL`.
58
+
Defines what columns to include within the payload of the message that streams the changes made to the specified table. *@include_all_columns* is **bit**, and can't be `NULL`.
59
59
60
60
*@include_all_columns* can be one of the following values:
61
61
62
62
| Value | Description |
63
-
|---|---|
64
-
|`1` (default) | Includes all columns within the payload of the message that streams the changes made to the specified table. |
63
+
|---|---|
64
+
|`1` (default) | Includes all columns within the payload of the message that streams the changes made to the specified table. |
65
65
|`0`| Only includes columns that have changed within the payload of the message that streams the changes made to the specified table. |
If specified, determines if old values are included within the payload of the message that streams the changes made to the specified table. *@include_old_values* is **bit**, and can't be `NULL`. This parameter is optional.
69
+
If specified, determines if old values are included within the payload of the message that streams the changes made to the specified table. *@include_old_values* is **bit**, and can't be `NULL`. This parameter is optional.
70
70
71
-
Old values are the values of the column before the change was made. For example, if a row is updated, the old values are the values of the columns before the update.
71
+
Old values are the values of the column before the change was made. For example, if a row is updated, the old values are the values of the columns before the update.
72
72
73
73
*@include_old_values* can be one of the following:
74
74
75
75
| Value | Description |
76
-
|---|---|
77
-
|`1` (default) | Includes old values within the payload of the message that streams the changes made to the specified table. |
76
+
|---|---|
77
+
|`1` (default) | Includes old values within the payload of the message that streams the changes made to the specified table. |
78
78
|`0`| Skips old values within the payload of the message that streams the changes made to the specified table. |
Determines if old changed large objects (LOB) values are included within the payload of the message that streams the changes made to the specified table. '@include_old_lob_values* is **bit**, and can't be `NULL`.
82
+
Determines if old changed large objects (LOB) values are included within the payload of the message that streams the changes made to the specified table. '@include_old_lob_values* is **bit**, and can't be `NULL`.
83
83
84
-
Old values are the values of the column before the change was made. For example, if a row is updated, the old values are the values of the columns before the update.
84
+
Old values are the values of the column before the change was made. For example, if a row is updated, the old values are the values of the columns before the update.
85
85
86
86
'@include_old_lob_values* can be one of the following values:
87
87
88
88
| Value | Description |
89
-
|---|---|
90
-
|`1`| Includes all columns within the payload of the message that streams the changes made to the specified table. |
89
+
|---|---|
90
+
|`1`| Includes all columns within the payload of the message that streams the changes made to the specified table. |
91
91
|`0` (default) | Only includes columns that have changed within the payload of the message that streams the changes made to the specified table. |
92
92
93
93
## Return code values
@@ -101,4 +101,4 @@ A user with [CONTROL database permissions](../security/permissions-database-engi
101
101
## Related content
102
102
103
103
-[What is change event streaming?](../track-changes/change-event-streaming/overview.md)
Copy file name to clipboardExpand all lines: docs/relational-databases/system-stored-procedures/sys-sp-add-trusted-assembly-transact-sql.md
+2-4Lines changed: 2 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@ description: Adds an assembly to the list of trusted assemblies for the server.
4
4
author: VanMSFT
5
5
ms.author: vanto
6
6
ms.reviewer: randolphwest
7
-
ms.date: 03/07/2025
7
+
ms.date: 06/23/2025
8
8
ms.service: sql
9
9
ms.subservice: system-objects
10
10
ms.topic: "reference"
@@ -61,9 +61,7 @@ Requires membership in the **sysadmin** fixed server role or CONTROL SERVER perm
61
61
The following example adds an assembly named `pointudt` to the list of trusted assemblies for the server. These values are available from [sys.assemblies](../system-catalog-views/sys-assemblies-transact-sql.md).
0 commit comments