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

Free Snowflake COF-C03 Practice Exam with Questions & Answers | Set: 14

Questions 261

Which option will create a table without data from the CUSTOMERS table?

Options:
A.

CREATE TABLE CUSTOMERS_CLONE LIKE CUSTOMERS;

B.

CREATE TABLE CUSTOMERS_CLONE CLONE CUSTOMERS;

C.

CREATE OR REPLACE TEMP TABLE CUSTOMERS_CLONE (CLONE VARCHAR);

D.

CREATE TABLE CUSTOMERS_CLONE AS SELECT * FROM CUSTOMERS;

Snowflake COF-C03 Premium Access
Questions 262

A Snowflake practitioner wants to improve the performance of a pipeline that repeatedly queries semi-structured data.

Which features can improve query performance for this workload? Select TWO.

Options:
A.

Materialized view

B.

A clustering key directly on the semi-structured column

C.

Query Acceleration Service

D.

Search Optimization Service

E.

Multi-cluster virtual warehouse

Questions 263

Which Snowflake table type is only visible to the user who creates it, can have the same name as permanent tables in the same schema, and is dropped at the end of the session?

Options:
A.

Temporary

B.

Local

C.

User

D.

Transient

Questions 264

A user creates a stage using the following command:

What will be the outcome?

Options:
A.

A stage with a directory table set to automatically refresh will be created.

B.

A stage with a directory table that has metadata that must be manually refreshed will be created.

C.

An error will be received stating that the storage location for the stage must be identified when creating a stage with a directory table.

D.

The command will fail to run because the name of the directory table is not specified.

Questions 265

Cloning is being used to create a development environment. Will storage be impacted when cloned tables are modified in a development environment?

Options:
A.

Cloned tables will be duplicated in storage.

B.

Storage consumption remains unaffected.

C.

The modified micro-partitions consume additional storage.

D.

Storage usage increases with the number of clones created.

Questions 266

Which function, when added to a select statement will return a randomly-selected, specified number of rows from a table?

Options:
A.

AVERAGE < num > ROWS)

B.

MEDIAN < < num > RONS)

C.

SAMPLE( < num > ROWS)

D.

RANDOM( < num > ROUS)

Questions 267

Which data sharing option allows a Snowflake user to set up and manage a group of accounts and offer a share to that group?

Options:
A.

Free listing

B.

Paid listing

C.

Direct share

D.

Data Exchange

Questions 268

How are clusters handled when the Economy scaling policy is set on a multi-cluster virtual warehouse?

Options:
A.

A new cluster starts when the system detects that there is one or more queries queued waiting for an available cluster.

B.

A new cluster will start every 60 seconds if there are queued queries that have been waiting for more than 30 seconds for an available cluster.

C.

A new cluster starts only if the system estimates that the queued queries will require resources that will keep the new cluster busy for at least 6 minutes.

D.

A cluster will shut down after 3 system checks indicating that the cluster has been under-utilized for a minimum of 6 minutes.

Questions 269

How can customer data be restricted by country for a global company using a multi-tenant environment?

Options:
A.

Implement a new account structure and create sub-accounts for each country. Then replicate the required data.

B.

Implement a row-level security policy in the customer table that looks at a mapping table identifying which users should have access to what data.

C.

Implement a secure User-Defined Function (UDF) and use a secure data share for each country.

D.

Implement a column-level security policy in the customer table that restricts access based on the user ' s geographic location.

Questions 270

A size Small standard virtual warehouse running in auto-suspend mode is used for a production Business Intelligence (BI) reporting environment. The BI reports generate quickly in the early morning, but as the day progresses and there are more users, it takes longer to run the reports. How can this situation be addressed?

Options:
A.

Enable the query acceleration service.

B.

Increase the size of the virtual warehouse.

C.

Disable the auto-suspend mode.

D.

Change the standard warehouse to a multi-cluster warehouse.

Questions 271

How does Snowflake define i1s approach to Discretionary Access Control (DAC)?

Options:
A.

A defined level of access to an object

B.

An entity in which access can be granted

C.

Each object has an owner, who can in turn grail access to that object.

D.

Access privileges are assigned to roles. which are in turn assigned to use ' s

Questions 272

What takes the highest precedence in Snowflake file format options, when specified in multiple locations during data loading?

Options:
A.

The stage definition

B.

The table definition

C.

The use of a copy into < table > statement

D.

The use of a copy INTO < location > statement

Questions 273

Which file format option should be used when unloading data into a stage to create a CSV or a JSON file?

Options:
A.

PARSE_HEADER

B.

TRIM_SPACE

C.

FILE_EXTENSION

D.

SKIP_HEADER

Questions 274

What is the COALESCE conditional expression used for?

Options:
A.

To split a STRING into multiple ARRAYs

B.

To remove duplicates from a data set

C.

To join data from multiple columns

D.

To return the first non-NULL expression in an argument

Questions 275

Which command should be used to load data incrementally based on column values that are specified in the source table or subquery?

Options:
A.

MERGE

B.

COPY INTO

C.

GET

D.

INSERT INTO

Questions 276

Which command will consume credits from a virtual warehouse?

Options:
A.

SELECT MAX(UUID) FROM SNOWFLAKE;

B.

SELECT COUNT(FLAKE_ID) FROM SNOWFLAKE GROUP BY UUID;

C.

SHOW TABLES LIKE ' SNOWFL% ' IN SCHEMA( ' PUBLIC ' );

D.

SELECT COUNT(*) FROM SNOWFLAKE;

Questions 277

A Snowflake user needs to optimize the definition of a secure view, but the user cannot see the view.

Which of the LEAST-PRIVILEGED access or role that should be granted to the user to complete this task?

Options:
A.

Grant the user the AYSADMIN role.

B.

Grant the user the ownership privilege on the secure view.

C.

Grant the user the imported privileges privilege on the database.

D.

Grant the user the SHOWFLAKE. object viewer database role.

Questions 278

Which tasks will help optimize virtual warehouse costs? (Select TWO)

Options:
A.

Enabling auto-suspend

B.

Limiting statement queue times

C.

Enabling multi-cluster warehouses

D.

Limiting statement timeout seconds

E.

Enabling auto-resume

Questions 279

If Role_A owns Role_B, what permissions does Role_A have based on this relationship?

Options:
A.

Role_A automatically inherits all privileges assigned to Role_B.

B.

Role_A can use the privileges of Role_B, if Role_A is higher than Role_B in a defined hierarchy.

C.

Role_A can grant or revoke access to the role.

D.

Role_A can execute any tasks assigned to Role_B, without an explicit grant.

Questions 280

Which command will indicate whether a materialized view is being used in a query?

Options:
A.

SHOW

B.

DESCRIBE

C.

EXPLAIN

D.

USE