- (Topic 3)
What effect does WAIT_FOR_COMPLETION = TRUE have when running an ALTER WAREHOUSE command and changing the warehouse size?
Correct Answer:
D
The WAIT_FOR_COMPLETION = TRUE parameter in an ALTER WAREHOUSE command ensures that the command does not return until the warehouse has completed resizing. This means that the command will wait until all the necessary compute resources have been provisioned and the warehouse size has been changed. References: [COF-C02] SnowPro Core Certification Exam Study Guide
- (Topic 5)
What are valid sub-clauses to the OVER clause for a window function? (Select TWO).
Correct Answer:
CD
Valid sub-clauses to theOVERclause for a window function in SQL are:
✑ C. ORDER BY: This clause specifies the order in which the rows in a partition are processed by the window function. It is essential for functions that depend on the row order, such as ranking functions.
✑ D. PARTITION BY: This clause divides the result set into partitions to which the window function is applied. Each partition is processed independently of other partitions, making it crucial for functions that compute values across sets of rows that share common characteristics.
These clauses are fundamental to defining the scope and order of data over which the window function operates, enabling complex analytical computations within SQL queries. References:
✑ Snowflake Documentation: Window Functions
- (Topic 2)
How long is the Fail-safe period for temporary and transient tables?
Correct Answer:
A
Temporary and transient tables in Snowflake do not have a Fail-safe period. Once the session ends or the tables are dropped, the data is purged and not recoverable1.
Reference: https://docs.snowflake.com/en/user-guide/tables-temp-transient.html
- (Topic 2)
Which of the following are characteristics of Snowflake virtual warehouses? (Choose two.)
Correct Answer:
CE
Snowflake virtual warehouses support a configuration file and command line options in SnowSQL to specify a default warehouse, which is characteristic C. Additionally, the size of a virtual warehouse can be changed at any time, which is characteristic E. These features provide flexibility and ease of use in managing compute resources2. References = [COF-C02] SnowPro Core Certification Exam Study Guide, Snowflake Documentation
- (Topic 1)
True or False: Reader Accounts are able to extract data from shared data objects for use outside of Snowflake.
Correct Answer:
B
Reader accounts in Snowflake are designed to allow users to read data shared with them but do not have the capability to extract data for use outside of Snowflake. They are intended for consuming shared data within the Snowflake environment only.