What activities can a user with the ORGADMIN role perform? (Select TWO).
Correct Answer: B,D
The ORGADMIN role in Snowflake is designed to manage organization-level activities. This role can perform several tasks that span across multiple accounts within the organization.
* View Usage Information: The ORGADMIN role can view usage statistics and billing information for all accounts within the organization.
-- Example: Viewing usage information
SELECT *
FROM organization_usage_history;
* Enable Database Replication: The ORGADMIN role has the authority to enable and manage database replication for accounts within the organization.
-- Example: Enabling database replication
ALTER DATABASE my_database ENABLE REPLICATION TO ACCOUNT other_account; References:
* Snowflake Documentation: Organization Administration
* Snowflake Documentation: Replication