Categories:

System functions (System Control)

SYSTEM$UNSET_EVENT_SHARING_ACCOUNT_FOR_REGION¶

Unsets the events account for a region.

See also:

SYSTEM$SET_EVENT_SHARING_ACCOUNT_FOR_REGION

Syntax¶

SYSTEM$UNSET_EVENT_SHARING_ACCOUNT_FOR_REGION( '<snowflake_region>' , '<region_group>' , '<account_name>' )
Copy

Arguments¶

snowflake_region

Specifies the region where the account is located, for example: AWS_US_WEST_2, AWS_US_EAST_1.

region_group

Specifies the region group, for example: PUBLIC.

account_name

Specifies the account name.

Access control requirements¶

  • Only users with the ORGADMIN role can execute this SQL function.

Examples¶

SELECT SYSTEM$UNSET_EVENT_SHARING_ACCOUNT_FOR_REGION('aws_us_west_2', 'public', 'myaccount');
Copy