SnowPro-Core Dumps

SnowPro-Core Free Practice Test

Snowflake SnowPro-Core: SnowPro Core Certification Exam

QUESTION 66

- (Exam Topic 3)
What effect does WAIT_FOR_COMPLETION = TRUE have when running an ALTER WAREHOUSE command and changing the warehouse size?

Correct Answer: D

QUESTION 67

- (Exam Topic 3)
Which of the following describes a Snowflake stored procedure?

Correct Answer: A
Reference: https://docs.snowflake.com/en/sql-reference/stored-procedures-overview.html

QUESTION 68

- (Exam Topic 3)
What versions of Snowflake should be used to manage compliance with Personal Identifiable Information (PII) requirements? (Choose two.)

Correct Answer: BC

QUESTION 69

- (Exam Topic 2)
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
Data Size Limitations
The VARIANT data type imposes a 16 MB size limit on individual rows.
For some semi-structured data formats (e.g. JSON), data sets are frequently a simple concatenation of multiple documents. The JSON output from some software is composed of a single huge array containing multiple records. There is no need to separate the documents with line breaks or commas, though both are supported.
If the data exceeds 16 MB, enable the STRIP_OUTER_ARRAY file format option for the COPY INTO

command to remove the outer array structure and load the records into separate table rows:
copy into
from @~/.json
file_format = (type = 'JSON' strip_outer_array = true); https://docs.snowflake.com/en/user-guide/semistructured-considerations.html

QUESTION 70

- (Exam Topic 1)
When a Pipe is recreated using the CREATE OR REPLACE PIPE command:

Correct Answer: A
https://docs.snowflake.com/en/user-guide/data-load-snowpipe-manage.html#load-history "When a pipe is recreated, the load history is dropped."