Weekend Sale - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

Which function can be used with the copy into statement to convent rows from a relational table to a single variant column, and to unload rows into a JSON file?

A.

FLATTEN

B.

OBJECT_AS

C.

OBJECT_CONSTRUCT

D.

TO VARIANT

Which Snowflake feature or tool helps troubleshoot issues in SQL query expressions that commonly cause performance bottlenecks?

A.

Persisted query results

B.

QUERY_HISTORY View

C.

Query acceleration service

D.

Query Profile

Which service or tool is a Command Line Interface (CLI) client used for connecting to Snowflake to execute SQL queries?

A.

Snowsight

B.

SnowCD

C.

Snowpark

D.

SnowSQL

Which view should be checked to ensure that data has loaded successfully before removing staged files?

A.

LOAD_HISTORY

B.

STAGE_STORAGE_USAGE_HISTORY

C.

COPY_HISTORY

D.

DATA TRANSFER HISTORY

What Snowflake objects can contain custom application logic written in JavaScript? (Select TWO)

A.

Stored procedures

B.

Stages

C.

Tasks

D.

Views

E.

User-Defined Functions (UDFs)

Which Snowflake objects can process staged files in parallel? (Select TWO)

A.

User-Defined Functions (UDFs)

B.

User-Defined Table Functions (UDTFs)

C.

Stored procedures

D.

Snowpipes

E.

Tasks

What is the default access of a securable object until other access is granted?

A.

No access

B.

Read access

C.

Write access

D.

Full access

Which Snowflake storage object can be used to store data beyond a single session and will not incur Fail-safe costs?

A.

Permanent table

B.

External table

C.

Temporary table

D.

Transient table

By default, which role can create resource monitors?

A.

ACCOUNTADMIN

B.

SECURITYADMIN

C.

SYSADMIN

D.

USERADMIN

Which Snowflake governance feature allows users to assign metadata labels to improve data governance and database access control?

A.

Secure functions

B.

Secure views

C.

Object tagging

D.

Row-level security

A Snowflake user is creating a deployment pipeline for Snowflake objects.

What interface should be used to automate object deployment?

A.

Snowflake Horizon Catalog

B.

SnowSQL

C.

ODBC driver

D.

SnowCD

Which role can create and manage Snowflake accounts?

A.

SYSADMIN

B.

ACCOUNTADMIN

C.

ORGADMIN

D.

SECURITYADMIN

Which Snowflake table type persists until it is explicitly dropped. is available for all users with relevant privileges (across sessions). and has no Fail-safe period?

A.

External

B.

Permanent

C.

Temporary

D.

Transient

Structured data must be moved from a Snowflake table to an Amazon S3 bucket and transformed into JSON.

What function should be used to do this?

A.

PARSE_JSON()

B.

ARRAY_CONSTRUCT()

C.

OBJECT_CONSTRUCT()

D.

GET

How can an administrator check for updates (for example, SCIM API requests) sent to Snowflake by the identity provider?

A.

ACCESS_HISTORY

B.

LOAD_HISTORY

C.

QUERY_HISTORY

D.

REST EVENT HISTORY

Which Snowsight feature can be used to perform data manipulations and transformations using a programming language?

A.

SnowSQL

B.

Dashboards

C.

Python worksheets

D.

Provider Studio

What is the purpose of the use of the VALIDATE command?

A.

To view any queries that encountered an error

B.

To verify that a SELECT query will run without error

C.

To prevent a put statement from running if an error occurs

D.

To see all errors from a previously run COPY INTO

statement

statement. This command helps users identify and resolve data loading issues.

    Run the COPY INTO Statement:Execute theCOPY INTO

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
, , ]

Which task is supported by the use of Access History in Snowflake?

A.

Data backups

B.

Cost monitoring

C.

Compliance auditing

D.

Performance optimization

Which COPY INTO

options can be used to load data from a staged file when the metadata in the file has expired? (Select TWO)

A.

LOAD_UNCERTAIN_FILES

B.

LOAD_EXPIRED_FILES

C.

FORCE

D.

ENFORCE_LENGTH

E.

PURGE

The customer table in the T1 database is accidentally dropped.

Which privileges are required to restore this table? {Select TWO).

A.

SELECT privilege on the customer table

B.

ownership privilege on the customer table

C.

All privileges on the customer table

D.

All privileges on the T1 database

E.

CREATE TABIE privilege on the T1 database