Categories:

System functions (System Control)

SYSTEM$ENABLE_FEATURE_GROUPS

Re-enables a feature group for the current account that was previously disabled with SYSTEM$DISABLE_FEATURE_GROUPS or SYSTEM$DISABLE_FEATURE_GROUPS_PREVIEW.

See also:

SYSTEM$DISABLE_FEATURE_GROUPS, SYSTEM$DISABLE_FEATURE_GROUPS_PREVIEW, SYSTEM$DISABLE_PREVIEW_ACCESS

Note

This function is available on request. To enable it for your account, contact Snowflake Support. Before enabling, Snowflake Support snapshots your current account-level parameter overrides for features in the affected group, so that individual settings can be restored if you need to revert specific per-feature settings later.

Syntax

SYSTEM$ENABLE_FEATURE_GROUPS( '<group_name>' )

Arguments

group_name

Name of a feature group to re-enable. Case-insensitive.

The only currently supported value is:

GroupScope
AI_FEATURESCortex Search, Cortex Agent, Cortex Analyst, Cortex REST API, the AI/ML user interface in Snowsight, fine-tuning, Document AI, Snowflake Marketplace AI products, and AI SQL built-in functions such as AI_COMPLETE, AI_CLASSIFY, AI_FILTER, and AI_EMBED.

The exact set of features covered by the group can evolve over time as new AI capabilities are added.

Returns

Returns a VARCHAR status message that the feature group has been re-enabled:

+---------------------------------------------+
| SYSTEM$ENABLE_FEATURE_GROUPS('AI_FEATURES') |
+---------------------------------------------+
| Successfully enabled groups: AI_FEATURES.   |
+---------------------------------------------+

Access control requirements

  • Only account administrators (users with the ACCOUNTADMIN role) can execute this function.

Usage notes

  • Group names are case-insensitive (for example, ai_features and AI_FEATURES are equivalent).
  • The function operates on the current account. You can’t use it to target a different account.
  • The function is idempotent. Calling it on an already-enabled group still returns a success message.
  • This function restores only the group-level setting to its default. It does not restore the individual account-level parameter overrides that SYSTEM$DISABLE_FEATURE_GROUPS (or SYSTEM$DISABLE_FEATURE_GROUPS_PREVIEW ) unset when the group was disabled. To roll back specific per-feature settings, contact Snowflake Support to restore them from the pre-change snapshot.

Examples

Re-enable AI features for the current account:

USE ROLE ACCOUNTADMIN;
SELECT SYSTEM$ENABLE_FEATURE_GROUPS('AI_FEATURES');