Skip to content

Latest commit

 

History

History
65 lines (50 loc) · 2.72 KB

File metadata and controls

65 lines (50 loc) · 2.72 KB
title sys.sp_change_feed_drop_table_group (Transact-SQL)
description The sys.sp_change_feed_drop_table_group system stored procedure drops a table group and internal metadata objects.
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
ignite-2025
f1_keywords
sys.sp_change_feed_drop_table_group_TSQL
sys.sp_change_feed_drop_table_group
sp_change_feed_drop_table_group_TSQL
sp_change_feed_drop_table_group
helpviewer_keywords
sp_change_feed_drop_table_group
dev_langs
TSQL
monikerRange >=sql-server-ver16 || =azuresqldb-current || =azuresqldb-mi-current || =fabric || =fabric-sqldb || =azure-sqldw-latest

sys.sp_change_feed_drop_table_group (Transact-SQL)

[!INCLUDE sqlserver2022-asdb-asdbmi-asa-fabricmirroredsqldb-fabricsqldb]

Drops a table group and internal metadata objects.

Caution

This system stored procedure is used internally and isn't recommended for direct administrative use. Use Synapse Studio or the Fabric portal instead. Using this procedure could introduce inconsistency.

This system stored procedure is used for:

Syntax

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

sys.sp_change_feed_drop_table_group
    @table_group_id
[ ; ]

Arguments

@table_group_id

Required. Data type is uniqueidentifier. The unique identifier of the table group. It's a GUID generated by the initial setup.

Permissions

A user with CONTROL database permissions, db_owner database role membership, or sysadmin server role membership can execute this procedure.

Related content