ExamGecko
Question list
Search
Search

Question 150 - SnowPro Core discussion

Report
Export

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

A.
Removing a column from the query SELECT list
Answers
A.
Removing a column from the query SELECT list
B.
Stopping the virtual warehouse that the query is running against
Answers
B.
Stopping the virtual warehouse that the query is running against
C.
Clustering of the data used by the query
Answers
C.
Clustering of the data used by the query
D.
Executing the RESULTS_SCAN() table function
Answers
D.
Executing the RESULTS_SCAN() table function
E.
Changing a column that is not in the cached query
Answers
E.
Changing a column that is not in the cached query
Suggested answer: B, D

Explanation:

The ResultSet cache is leveraged to quickly return results for repeated queries. Actions that prevent leveraging this cache include stopping the virtual warehouse that the query is running against (B) and executing the RESULTS_SCAN() table function (D).Stopping the warehouse clears the local disk cache, including the ResultSet cache1. The RESULTS_SCAN() function is used to retrieve the result of a previously executed query, which bypasses the need for the ResultSet cache.

asked 23/09/2024
Narender B
31 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first