Collations & Caching - 5

Collations & Caching - 5

Professional Development

7 Qs

quiz-placeholder

Similar activities

technology

technology

2nd Grade - Professional Development

8 Qs

Ingat-ingat Lagi

Ingat-ingat Lagi

Professional Development

10 Qs

EVA CONTINUA 01 - Metodos de Datos

EVA CONTINUA 01 - Metodos de Datos

Professional Development

10 Qs

Bài tập lớp 12

Bài tập lớp 12

Professional Development

10 Qs

Power BI Training 2

Power BI Training 2

Professional Development

6 Qs

Membangun POWER BI Report/Dashboard

Membangun POWER BI Report/Dashboard

Professional Development

8 Qs

SQL - Cuestionario ETL

SQL - Cuestionario ETL

Professional Development

9 Qs

Quiz 1 - Thao tác trên database

Quiz 1 - Thao tác trên database

Professional Development

7 Qs

Collations & Caching - 5

Collations & Caching - 5

Assessment

Quiz

Created by

Sydney Cucchiara

Instructional Technology

Professional Development

2 plays

Hard

7 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

DATA_RETENTION_TIME_IN_DAYS is set to 1 at the account level, 30 on DB_A, and 15 on DB_A.SchemaA.

You create a table in DB_A.SchemaA without specifying a retention time. What will the table use?

1 day

15 days

30 days

Answer explanation

If no time travel value is set on an object,

it will inherit the value used by the

closest enclosing object.

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Using the default collation method, in

what order will the following values be

listed in the results if you do an ORDER

BY on the column?

Hot Dogs

Hot dogs

hamburgers

pizza

Mac 'n Cheese

anchovies

Answer explanation

With UTF-8, upper-case letters will

always be sorted before lower-case.

3.

FILL IN THE BLANK QUESTION

1 min • 1 pt

You issue this query:

SELECT * FROM my_table;

Followed by this query:

SELECT * from my_table;

Which cache will help increase the

speed of this query?

Answer explanation

The data cache. The query result cache

would not be used in this instance,

because the queries are not identical

(FROM versus from).

4.

FILL IN THE BLANK QUESTION

1 min • 1 pt

You run this query on a cold

warehouse:

SELECT

col1, col2, col3

FROM

my_table

WHERE

col1 > 128.02

What cache, if any, will be used?

Answer explanation

The metadata cache will be used by the

query optimizer, to prune out micro-

partitions that are not relevant to the

query.

However, if the query was run previously,

none of the micro-partitions relevant to

the query were changed, the persisted

result is still available, and the user’s role

has the right privileges to the objects in

the query, the query results cache will be

used instead.

5.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

In the query profile shown below, which

cache is being referred to?

Answer explanation

"Percentage scanned from cache"

refers to the data cache.

6.

OPEN ENDED QUESTION

3 mins • 1 pt

Rate each of the following statements as

TRUE or FALSE:

A. Virtual warehouse costs are always

decreased by setting a very short

auto-suspend time.

B. The metadata cache is used in every

query that has a WHERE clause.

C. Data cache use is all-or-nothing.

D. The timer on the query result cache

resets every time someone uses the

result.

Evaluate responses using AI:

OFF

Answer explanation

A. FALSE – shutting down the virtual

warehouse clears the data cache, so

shutting a warehouse down too

quickly can reduce use of that cache

B. TRUE – even if the query cannot be

pruned, the metadata is examined

C. FALSE – you can use as much of the

data cache as is relevant to your

query

D. TRUE – it resets to 24 hours

7.

OPEN ENDED QUESTION

3 mins • 1 pt

What are the three types of cache?

Evaluate responses using AI:

OFF