| title | sys.sp_help_change_feed_table (Transact-SQL) | ||||
|---|---|---|---|---|---|
| description | The sys.sp_help_change_feed_table system stored procedure provides the provision or deprovision flow status of Azure Synapse Link for SQL or Fabric Mirrored Databases. | ||||
| author | WilliamDAssafMSFT | ||||
| ms.author | wiassaf | ||||
| ms.reviewer | imotiwala, ajayj, randolphwest | ||||
| ms.date | 06/23/2025 | ||||
| ms.service | fabric | ||||
| ms.subservice | system-objects | ||||
| ms.topic | reference | ||||
| ms.custom |
|
||||
| f1_keywords |
|
||||
| helpviewer_keywords |
|
||||
| dev_langs |
|
||||
| monikerRange | >=sql-server-ver16 || =azuresqldb-current || =azuresqldb-mi-current || =fabric || =fabric-sqldb || =azure-sqldw-latest |
[!INCLUDE sqlserver2022-asdb-asdbmi-asa-fabricmirroredsqldb-fabricsqldb]
Provides the provision or deprovision status and information of table group and table metadata.
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 [!INCLUDE sssql25-md] and Azure SQL Database.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
EXECUTE sys.sp_help_change_feed_table;
The unique identifier of the table group
The source table identifier
The source table schema name
The source table name
| Column name | Data type | Description |
|---|---|---|
table_group_id |
uniqueidentifier | The unique identifier of the table group. |
table_group_name |
nvarchar(140) | The name of the table group. |
schema_name |
sysname | The schema name of the original table |
table_name |
sysname | The name of the original table. |
table_id |
uniqueidentifier | The source table identifier. |
destination_location |
nvarchar(512) | URL string of the landing zone folder. |
workspace_id |
nvarchar(247) | The related Synapse workspace Azure resource ID. |
state |
tinyint | The current state of the table. Valid state values:1 - Enabled.2 - Exporting.3 - Exported.4 - Active.5 - Disabled.6 - Pending Disablement.7 - Reseeding.8 - Reseed Notified. |
table_object_id |
int | The object ID of the change feed table. |
A user with CONTROL database permissions, db_owner database role membership, or sysadmin server role membership can execute this procedure.