What is the appropriate command to provide the access?

A user needs access to create materialized view on a shema mydb.myschema. What is the appropriate command to provide the access?A . GRANT ROLE MYROLE TO USER USER1; GRANT CREATE MATERIALIZED VIEW ON SCHEMA MYDB.MYSCHEMA TO MYROLE; B. GRANT CREATE MATERIALIZED VIEW ON SCHEMA MYDB.MYSCHEMA TO USER USER1; C. GRANT...

May 27, 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 . TRUE B. FALSEView AnswerAnswer: B Explanation: A column with very low cardinality (e.g. a column that indicates only whether a person is male or female) might yield only minimal pruning. At the other extreme, a column with...

May 27, 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 command B. The UPSERT command C. The CHANGES clause D. A STREAM object E. Thee CHANGE_DATA_CAPTURE commandView AnswerAnswer: C,D

May 27, 2023 No Comments READ MORE +

What is a characteristic of loading data into Snowflake using the Snowflake Connector for Kafka?

What is a characteristic of loading data into Snowflake using the Snowflake Connector for Kafka?A . The Connector only works in Snowflake regions that use AWS infrastructure. B. The Connector works with all file formats, including text, JSON, Avro, Ore, Parquet, and XML. C. The Connector creates and manages its...

May 27, 2023 No Comments READ MORE +

When loading data from stage using COPY INTO, what options can you specify for the ON_ERROR clause?

When loading data from stage using COPY INTO, what options can you specify for the ON_ERROR clause?A . CONTINUE B. SKIP_FILE C. ABORT_STATEMENT D. FAILView AnswerAnswer: A,B,C Explanation: Copy Options (copyOptions) You can specify one or more of the following copy options (separated by blank spaces, commas, or new lines):...

May 27, 2023 No Comments READ MORE +

What is the MOST cost-effective way to bring this data into a Snowflake table?

A company is storing large numbers of small JSON files (ranging from 1-4 bytes) that are received from IoT devices and sent to a cloud provider. In any given hour, 100,000 files are added to the cloud provider. What is the MOST cost-effective way to bring this data into a...

May 27, 2023 No Comments READ MORE +

Which of the below select query will fail for this table?

You have created a table as below CREATE TABLE SNOWFLAKE (FLAKE_ID INTEGER, UDEMY_COURSE VARCHAR); Which of the below select query will fail for this table?A . SELECT * from snowflake; B. SELECT * from Snowflake; C. SELECT * from "snowflake"; D. SELECT * FROM "SNOWFLAKE";View AnswerAnswer: C Explanation: Try it...

May 27, 2023 No Comments READ MORE +

Secure views cannot take advantage of the internal optimizations which require access to the underlying data in the base tables for the view.

Secure views cannot take advantage of the internal optimizations which require access to the underlying data in the base tables for the view.A . TRUE B. FALSEView AnswerAnswer: A Explanation: Some of the internal optimizations for views require access to the underlying data in the base tables for the view....

May 27, 2023 No Comments READ MORE +

When loading data into a table that captures the load time in a column with a default value of either CURRENT_TIME() or CURRENT_TIMESTAMP() what will occur?

When loading data into a table that captures the load time in a column with a default value of either CURRENT_TIME() or CURRENT_TIMESTAMP() what will occur?A . All rows loaded using a specific COPY statement will have varying timestamps based on when the rows were inserted. B. Any rows loaded...

May 27, 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...

May 26, 2023 No Comments READ MORE +