Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to:
SQL Server 2022 (16.x) and later versions
Azure SQL Database
Azure SQL Managed Instance
Azure Synapse Analytics
Warehouse in Microsoft Fabric
SQL database in Microsoft Fabric
Returns metadata that is used to configure change feed table groups.
This system stored procedure is used for:
- SQL database in Microsoft Fabric
- Microsoft Fabric mirrored databases
- Azure Synapse Link
- Change event streaming (preview) introduced in SQL Server 2025 (17.x) Preview.
Syntax
Transact-SQL syntax conventions
EXECUTE sys.sp_help_change_feed_table_groups;
Arguments
None
Result set
Column name | Data type | Description |
---|---|---|
table_group_id |
uniqueidentifier | Unique identifier of the change feed table group. |
table_group_name |
nvarchar(140) | The name of the table group. |
destination_location |
nvarchar(512) | URL string of the landing zone folder. |
destination_credential |
sysname | The credential name to access the landing zone. |
workspace_id |
nvarchar(247) | The related workspace Azure resource ID. |
synapse_workgroup_name |
nvarchar(50) | The related workspace name. |
enabled |
bit | Tracks if the table group is enabled for change feed. 1 - Yes, 0 - No. |
destination_type |
int | 0 = Azure Synapse Link. 2 = Fabric mirroring. |
Permissions
A user with CONTROL database permissions, db_owner database role membership, or sysadmin server role membership can execute this procedure.