00:00

QUESTION 61

- (Topic 1)
A user is loading JSON documents composed of a huge array containing multiple records into Snowflake. The user enables the strip outer_array file format option
What does the STRIP_OUTER_ARRAY file format do?

Correct Answer: B
The STRIP_OUTER_ARRAY file format option in Snowflake is used when loading JSON documents that are composed of a large array containing multiple records. When this option is enabled, it removes the outer array structure, which allows each record within the array to be loaded as a separate row in the table. This is particularly useful for efficiently loading JSON data that is structured as an array of records1.
References:
✑ Snowflake Documentation on JSON File Format
✑ [COF-C02] SnowPro Core Certification Exam Study Guide

QUESTION 62

- (Topic 6)
What is the purpose of the use of the VALIDATE command?

Correct Answer: D
TheVALIDATEcommand in Snowflake is used to check for errors that occurred during the execution of aCOPY INTO <table>statement. This command helps users identify and
resolve data loading issues.
✑ Run the COPY INTO Statement:Execute theCOPY INTO <table>command to load data from a stage into a table.
COPY INTO my_table FROM @my_stage
FILE_FORMAT = (FORMAT_NAME = 'my_format');
✑ Validate the Load:Use theVALIDATEfunction to see if there were any errors during the data load.
SELECT *
FROM TABLE(VALIDATE(my_table, JOB_ID => 'my_copy_job_id'));
✑ Review Errors:TheVALIDATEfunction will return details about any errors that occurred, such as parsing errors or data type mismatches.
References:
✑ Snowflake Documentation: Validating Data Loads
✑ Snowflake Documentation: COPY INTO <table>

QUESTION 63

- (Topic 2)
When publishing a Snowflake Data Marketplace listing into a remote region what should be taken into consideration? (Choose two.)

Correct Answer: BC
When publishing a Snowflake Data Marketplace listing into a remote region, it??s important to note that while the listing is replicated into all selected regions automatically, the data itself is not.Therefore, the data must be replicated separately. Additionally, the user must have the ORGADMIN role in at least one account to manage the replication of accounts1.

QUESTION 64

- (Topic 1)
Which of the following describes how multiple Snowflake accounts in a single organization relate to various cloud providers?

Correct Answer: A
Snowflake??s architecture allows for flexibility in account hosting across different cloud vendors and regions. This means that within a single organization, different Snowflake accounts can be set up in various cloud environments, such as AWS, Azure, or
GCP, and in different geographical regions. This allows organizations to leverage the global infrastructure of multiple cloud providers and optimize their data storage and computing needs based on regional requirements, data sovereignty laws, and other considerations.
https://docs.snowflake.com/en/user-guide/intro-regions.html

QUESTION 65

- (Topic 3)
What is the MAXIMUM size limit for a record of a VARIANT data type?

Correct Answer: B
The maximum size limit for a record of a VARIANT data type in Snowflake is 16MB. This allows for storing semi-structured data types like JSON, Avro, ORC, Parquet, or XML within a single VARIANT column. References: Based on general database knowledge as of 2021.