- (Topic 1)
User-level network policies can be created by which of the following roles? (Select TWO).
Correct Answer:
BD
User-level network policies in Snowflake can be created by roles with the necessary privileges to manage security and account settings. The ACCOUNTADMIN role has the highest level of privileges across the account, including the ability to manage network policies. The SECURITYADMIN role is specifically responsible for managing security objects within Snowflake, which includes the creation and management of network policies.
References:
✑ [COF-C02] SnowPro Core Certification Exam Study Guide
✑ Snowflake Documentation on Network Policies1
✑ Section 1.3 - SnowPro Core Certification Study Guide
- (Topic 6)
What activities can a user with the ORGADMIN role perform? (Select TWO).
Correct Answer:
BD
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
- (Topic 6)
How many credits does a size 3X-Large virtual warehouse consume if it runs continuously for 2 hours?
Correct Answer:
C
In Snowflake, the consumption of credits by a virtual warehouse is determined by its size and the duration for which it runs. A size 3X-Large virtual warehouse consumes 128 credits if it runs continuously for 2 hours. This consumption rate is based on the principle that larger warehouses, capable of providing greater computational resources and throughput, consume more credits per hour of operation. The specific rate of consumption is defined by Snowflake??s pricing model and the scale of the virtual warehouse.References:Snowflake Pricing Documentation
- (Topic 4)
Which command is used to unload data from a Snowflake database table into one or more files in a Snowflake stage?