Which role in Snowflake allows a user to administer users and manage all database objects?

Which role in Snowflake allows a user to administer users and manage all database objects?A . ACCOUNTADMIN B. SYSADMIN C. ROOT D. SECURITYADMINView AnswerAnswer: A

December 23, 2022 No Comments READ MORE +

What conditions should be true for a table to consider search optimization

What conditions should be true for a table to consider search optimizationA . The table size is at least 100 GB B. The table is not clustered OR The table is frequently queried on columns other than the primary cluster key C. The table can be of any sizeView AnswerAnswer:...

December 22, 2022 No Comments READ MORE +

Which statement is true below?

You have create a task as below CREATE TASK mytask1 WAREHOUSE = mywh SCHEDULE = '5 minute' WHEN SYSTEM$STREAM_HAS_DATA('MYSTREAM') AS INSERT INTO mytable1(id,name) SELECT id, name FROM mystream WHERE METADATA$ACTION = 'INSERT'; Which statement is true below?A . If SYSTEM$STREAM_HAS_DATA returns false, the task will be skipped B. If SYSTEM$STREAM_HAS_DATA...

December 22, 2022 No Comments READ MORE +

While choosing a cluster key, what is recommended by snowflake?

While choosing a cluster key, what is recommended by snowflake?A . Cluster columns that are most actively used in selective filters B. If there is room for additional cluster keys, then consider columns frequently used in join predicates C. Choose a key with high cardinalityView AnswerAnswer: A,B Explanation: Snowflake recommends...

December 22, 2022 No Comments READ MORE +

What is the best option?

You have a table named customer_table. You want to create another table as customer_table_other which will be same as customer_table with respect to schema and data. What is the best option?A . CREATE TABLE customer_table_other CLONE customer_table B. CREATE TABLE customer_table_other AS SELECT * FROM customer_table C. ALTER TABLE customer_table_other...

December 22, 2022 No Comments READ MORE +

Cloud services can help in pruning even if the columns are variant columns.

Cloud services can help in pruning even if the columns are variant columns.A . TRUE B. FALSEView AnswerAnswer: A Explanation: Snowflake stores internally variant (json) data, in a independent column like structure for the 100+ most common elements, and the remainder in a leftovers like column. Those virtual columns have...

December 22, 2022 No Comments READ MORE +

Which command below will you choose?

You have created a table as below CREATE TABLE SNOWFLAKE_BLOG(BLOG_ID NUMBER, BLOG_CONTENT VARCHAR,BLOG_AUTHOR VARCHAR,BLOG_CREATE_DATE TIMESTAMP ); Now you want to cluster it by BLOG_AUTHOR and BLOG_CREATE_DATE. Which command below will you choose?A . ALTER TABLE SNOWFLAKE_BLOG CLUSTER BY (BLOG_AUTHOR) B. ALTER TABLE SNOWFLAKE_BLOG CLUSTER BY (BLOG_AUTHOR, BLOG_CREATE_DATE); C. ALTER TABLE...

December 22, 2022 No Comments READ MORE +

JSON and PARQUET files can be loaded to columns in the same table

JSON and PARQUET files can be loaded to columns in the same tableA . TRUE B. FALSEView AnswerAnswer: B Explanation: Let us try to answer some logical questions to arrive at the answer for this question

December 22, 2022 No Comments READ MORE +

While creating a clustering key, what is the recommendation for maximum number of columns that you can include as part of the key?

While creating a clustering key, what is the recommendation for maximum number of columns that you can include as part of the key?A . Unlimited B. 3 to 4 C. Not more than 16 D. 32View AnswerAnswer: B Explanation: A single clustering key can contain one or more columns or...

December 22, 2022 No Comments READ MORE +

Which alter command below may affect the availability of column with respect to time travel?

Which alter command below may affect the availability of column with respect to time travel?A . ALTER TABLE...DROP COLUMN B. ALTER TABLE...SET DATA TYPE C. ALTER TABLE...SET DEFAULTView AnswerAnswer: B Explanation: If the precision of a column is decreased below the maximum precision of any column data retained in Time...

December 22, 2022 No Comments READ MORE +