ExamGecko
Question list
Search
Search

List of questions

Search

Related questions











Question 47 - DP-203 discussion

Report
Export

You have two fact tables named Flight and Weather. Queries targeting the tables will be based on the join between the following columns.

You need to recommend a solution that maximizes query performance.

What should you include in the recommendation?

A.
In the tables use a hash distribution of ArrivalDateTime and ReportDateTime.
Answers
A.
In the tables use a hash distribution of ArrivalDateTime and ReportDateTime.
B.
In the tables use a hash distribution of ArrivalAirportID and AirportID.
Answers
B.
In the tables use a hash distribution of ArrivalAirportID and AirportID.
C.
In each table, create an IDENTITY column.
Answers
C.
In each table, create an IDENTITY column.
D.
In each table, create a column as a composite of the other two columns in the table.
Answers
D.
In each table, create a column as a composite of the other two columns in the table.
Suggested answer: B

Explanation:

Hash-distribution improves query performance on large fact tables. Incorrect Answers:

A: Do not use a date column for hash distribution. All data for the same date lands in the same distribution. If several users are all filtering on the same date, then only 1 of the 60 distributions do all the processing work.

asked 02/10/2024
Péter Szittya
43 questions
User
Your answer:
0 comments
Sorted by

Leave a comment first