Categories:

System Functions (System Control)

SYSTEM$ENABLE_BEHAVIOR_CHANGE_BUNDLE¶

Enables behavior changes included in the specified behavior change release bundle for the current account.

By default, behavior change bundles are not enabled during the pre-announcement period. Use this function to test behavior changes before they are enabled for your account.

See also:

SYSTEM$DISABLE_BEHAVIOR_CHANGE_BUNDLE, SYSTEM$BEHAVIOR_CHANGE_BUNDLE_STATUS SYSTEM$SHOW_ACTIVE_BEHAVIOR_CHANGE_BUNDLES

Syntax¶

SYSTEM$ENABLE_BEHAVIOR_CHANGE_BUNDLE( '<bundle_name>' )
Copy

Arguments¶

bundle_name

Name of the behavior change bundle, specified as a string. To obtain the name for a bundle, see Behavior Change Log.

Returns¶

Returns the VARCHAR value ENABLED if the function successfully enables the behavior changes.

Examples¶

The following example enables the 2020_08 behavior change bundle for the current account.

SELECT SYSTEM$ENABLE_BEHAVIOR_CHANGE_BUNDLE('2020_08');
Copy
+-------------------------------------------------+
| SYSTEM$ENABLE_BEHAVIOR_CHANGE_BUNDLE('2020_08') |
|-------------------------------------------------|
| ENABLED                                         |
+-------------------------------------------------+