Exam SnowPro Core All QuestionsBrowse all questions from this exam
Question 315

What happens to the underlying table data when a CLUSTER BY clause is added to a Snowflake table?

    Correct Answer: D

    Adding a CLUSTER BY clause to a Snowflake table may colocalize data by the cluster key within the micro-partitions. This helps improve pruning performance, meaning that queries can skip irrelevant micro-partitions and thereby enhance query efficiency. The data organization helps to minimize the number of micro-partitions that need to be scanned for a query involving the cluster key.

Discussion
halolOption: D

I think D: https://docs.snowflake.com/en/user-guide/tables-clustering-keys.html#benefits-of-defining-clustering-keys-for-very-large-tables

SV1122Option: D

A clustering key is a subset of columns in a table (or expressions on a table) that are explicitly designated to co-locate the data in the table in the same micro-partitions. This is useful for very large tables where the ordering was not ideal (at the time the data was inserted/loaded) or extensive DML has caused the table’s natural clustering to degrade. https://docs.snowflake.com/en/user-guide/tables-clustering-keys.html#benefits-of-defining-clustering-keys-for-very-large-tables

nagarajanbalaOption: D

D is correct

lordchaoOption: D

D is correct

fahfouhi94Option: D

D is good answer

sakis213Option: D

that would be D

_yyuktaOption: D

D is correct

misaaa18Option: D

ans is D.

otsumyOption: D

must be D.