- 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>' )
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');
+-------------------------------------------------+
| SYSTEM$ENABLE_BEHAVIOR_CHANGE_BUNDLE('2020_08') |
|-------------------------------------------------|
| ENABLED |
+-------------------------------------------------+