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

What actions will prevent leveraging of the ResultSet cache? (Choose two.)

    Correct Answer: A, E

    Removing a column from the query SELECT list will change the structure of the query, resulting in not being able to use the cached ResultSet. Changing a column that is not in the cached query can still impact the cached result, as updates to the table schema or data can invalidate the cached results.

Discussion
SV1122Options: AC

C is explained here "The table’s micro-partitions have not changed (e.g. been reclustered or consolidated) due to changes to other data in the table." https://docs.snowflake.com/en/user-guide/querying-persisted-results.html

Mike722

ACE are correct.

jayeshtestOptions: AE

Clustering will not prevent use of cached results, reclustering or consolidation will.

Renvis

A, C and E is correct. I tried all and the cache was not used

EmiB

E. Changing a column that is not in the cached query >> bypass RESULT CACHE (TABLE SCAN - Percentage scanned from cache 100.00%). Hitting RESULT CACHE = QUERY RESULT REUSE (Node Execution Time (0ms) 100.0%)

abhijit2683Options: AE

AE are correct

umidjon03Options: AC

ACE are correct. I've checked the case of E, and persisted query cache was not retrieved

pinkloveOptions: AE

I checked the last one. it doesn't leverage result set cache

SatyamKishore

Why not B ?

Sk_3

B says when VW is suspended ,but query result cache does not interact with VW while quering so it has no impact

rogerek077Options: DE

If "Changing a column that is not in the cached query" means changing such column's name or updating the data of that column then ACE are correct answers.

_yyuktaOptions: AC

A and C are correct

majewOptions: AE

I think it's not REclustering so C is not correct

sandy91

By clustering you are reorganizing the micro partitions thereby preventing resultset cache to reuse.. So A and C ae correct

JangelovskaOptions: AE

A -- Correct E -- Correct Tested with update on column that is not part of the cached query, after that cached cannot be used.

NEMMELAOptions: AC

AC is correct

arsalanraminOptions: AB

Should be A, B

MultiCloudIronManOptions: AC

Correct

RajuNaikOptions: AC

AC correct option

N89Options: AC

AC correct option