Which of the following are characteristics of Snowflake’s parameter hierarchy?

Which of the following are characteristics of Snowflake’s parameter hierarchy?A . Session parameters override virtual warehouse parameters.B . Virtual warehouse parameters override user parameters.C . Table parameters override virtual warehouse parameters.D . Schema parameters override account parameters.View AnswerAnswer: A

December 1, 2023 No Comments READ MORE +

You need to choose a high cardinality column for the clustering key

You need to choose a high cardinality column for the clustering keyA . TRUEB . FALSEView AnswerAnswer: A Explanation: Choosing a high cardinality column for the clustering key can be beneficial, especially if the column is frequently used in filters, join conditions, or range queries. High cardinality means that the...

December 1, 2023 No Comments READ MORE +

Which steps are recommended best practices for prioritizing cluster keys in Snowflake? (Choose two.)

Which steps are recommended best practices for prioritizing cluster keys in Snowflake? (Choose two.)A . Choose columns that are frequently used in join predicates.B . Choose lower cardinality columns to support clustering keys and cost effectiveness.C . Choose TIMESTAMP columns with nanoseconds for the highest number of unique rows.D ....

December 1, 2023 No Comments READ MORE +

What should the Architect do to enable the Snowflake search optimization service on this table?

An Architect has a VPN_ACCESS_LOGS table in the SECURITY_LOGS schema containing timestamps of the connection and disconnection, username of the user, and summary statistics. What should the Architect do to enable the Snowflake search optimization service on this table?A . Assume role with OWNERSHIP on future tables and ADD SEARCH...

December 1, 2023 No Comments READ MORE +

What built-in Snowflake features make use of the change tracking metadata for a table? (Choose two.)

What built-in Snowflake features make use of the change tracking metadata for a table? (Choose two.)A . The MERGE commandB . The UPSERT commandC . The CHANGES clauseD . A STREAM objectE . Thee CHANGE_DATA_CAPTURE commandView AnswerAnswer: A,D

December 1, 2023 No Comments READ MORE +

What is the most optimal solution that you will suggest to the business team?

You have a very large table which is already clustered on columns that are used to retrieve data from the table by a business group. The base table data does not change much. Another business group came to you and requested for a relatively small subset of data from the...

November 30, 2023 No Comments READ MORE +

What will happen if you try to ALTER a COLUMN(which has NULL values) to set it to NOT NULL

What will happen if you try to ALTER a COLUMN(which has NULL values) to set it to NOT NULLA . An error is returned and no changes are applied to the columnB . Snowflake automatically assigns a default value and let the change happenC . Snowflake drops the row and...

November 30, 2023 No Comments READ MORE +

How can this data be shared?

A healthcare company wants to share data with a medical institute. The institute is running a Standard edition of Snowflake; the healthcare company is running a Business Critical edition. How can this data be shared?A . The healthcare company will need to change the institute’s Snowflake edition in the accounts...

November 30, 2023 No Comments READ MORE +

Which command below will load data from result_scan to a table?

Which command below will load data from result_scan to a table?A . CREATE OR REPLACE TABLE STORE_FROM_RESULT_SCAN AS select * from table(result_scan(last_query_id()));B . CREATE OR REPLACE TABLE STORE_FROM_RESULT_SCAN AS select * from result_scan(last_query_id());C . INSERT INTO STORE_FROM_RESULT_SCAN select * from result_scan(last_query_id());View AnswerAnswer: B Explanation: This command uses the CREATE OR...

November 30, 2023 No Comments READ MORE +

How will you resume it?

You have created a TASK in snowflake. How will you resume it?A . No need to resume, the creation operation automatically enables the taskB . ALTER TASK mytask1 RESUME;C . ALTER TASK mytask1 START;View AnswerAnswer: B Explanation: It is important to remember that a Task that has just been created...

November 30, 2023 No Comments READ MORE +