Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.
exam questions

Exam SnowPro Advanced Architect All Questions

View all questions & answers for the SnowPro Advanced Architect exam

Exam SnowPro Advanced Architect topic 1 question 95 discussion

Actual exam question from Snowflake's SnowPro Advanced Architect
Question #: 95
Topic #: 1
[All SnowPro Advanced Architect Questions]

What is a key consideration when setting up search optimization service for a table?

  • A. Search optimization service works best with a column that has a minimum of 100 K distinct values.
  • B. Search optimization service can significantly improve query performance on partitioned external tables.
  • C. Search optimization service can help to optimize storage usage by compressing the data into a GZIP format.
  • D. The table must be clustered with a key having multiple columns for effective search optimization.
Show Suggested Answer Hide Answer
Suggested Answer: B 🗳️

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
MSIDDIQUI18
6 days, 19 hours ago
Correct Answer: A At least one of the columns accessed by the query filter operation has on the order of 100,000 distinct values or more. To determine the number of distinct values, you can use either of the following: • Use APPROX_COUNT_DISTINCT to get the approximate number of distinct values: SELECT APPROX_COUNT_DISTINCT(column1) FROM table1; • Use COUNT(DISTINCT <col_name>) to get the actual number of distinct values: SELECT COUNT(DISTINCT c1), COUNT(DISTINCT c2) FROM test_table;
upvoted 1 times
...
akellaanurag
3 weeks, 1 day ago
correct answer is A Additionally, the search optimization service does not support the following: External tables.
upvoted 1 times
...
cui_li
8 months ago
Correct Answer should be A "At least one of the columns accessed by the query filter operation has on the order of 100,000 distinct values or more." https://docs.snowflake.com/en/user-guide/search-optimization/queries-that-benefit
upvoted 3 times
...
Atomic_Gecko
8 months, 3 weeks ago
Correct Answer is A
upvoted 2 times
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...