00:00

QUESTION 156

- (Topic 5)
What is the only supported character set for loading and unloading data from all supported file formats?

Correct Answer: A
UTF-8 is the only supported character set for loading and unloading data from all supported file formats in Snowflake. UTF-8 is a widely used encoding that supports a large range of characters from various languages, making it suitable forinternationalization and ensuring data compatibility across different systems and platforms.
References:
✑ Snowflake Documentation: Data Loading and Unloading

QUESTION 157

- (Topic 1)
True or False: It is possible for a user to run a query against the query result cache without requiring an active Warehouse.

Correct Answer: A
Snowflake??s architecture allows for the use of a query result cache that stores the results of queries for a period of time. If the same query is run again and the underlying data has not changed, Snowflake can retrieve the result from this cache without needing to re-run the query on an active warehouse, thus saving on compute resources.

QUESTION 158

- (Topic 2)
Which of the following statements describe features of Snowflake data caching? (Choose two.)

Correct Answer: BE
Snowflake??s data caching features include the ability to clear the least- recently used data when the data cache is full to make room for new data. Additionally, the RESULT_SCAN table function can access and filter the contents of the query result cache, allowing users to retrieve and work with the results of previous queries. The other statements are incorrect: the data cache is not saved on the remote storage layer when a virtual warehouse is suspended, users can access queries from the query result cache that were run by other users, and there is no setting calledUSE_METADATA_CACHE in Snowflake. References: Caching in the Snowflake Cloud Data Platform, Optimizing the warehouse cache

QUESTION 159

- (Topic 3)
Which kind of Snowflake table stores file-level metadata for each file in a stage?

Correct Answer: A
The kind of Snowflake table that stores file-level metadata for each file in a stage is a directory table. A directory table is an implicit object layered on a stage and stores file-level metadata about the data files in the stage3.

QUESTION 160

- (Topic 3)
What internal stages are available in Snowflake? (Choose three.)

Correct Answer: BCE
Snowflake supports three types of internal stages: Named, User, and Table stages. These stages are used for staging data files to be loaded into Snowflake tables. Schema, Stream, and Database stages are not supported as internal stages in Snowflake. References: Snowflake Documentation1.