nerdexam
Microsoft

70-466 · Question #107

You work in the Business Intelligence (BI) department of a multinational company. The company has requested a new corporate BI solution that meets the following requirements: - The solution must use S

The correct answer is B. Create a multidimensional model with one partition for each month.. SSAS multidimensional natively supports metadata translations for multiple locales, and monthly partitioning enables efficient incremental processing as the model grows by 10 million rows per month.

Build an analysis services database

Question

You work in the Business Intelligence (BI) department of a multinational company. The company has requested a new corporate BI solution that meets the following requirements: - The solution must use SQL Server Analysis Services (SSAS). - The model must increment by of add 10 million fact rows per month. - The model must be translated to English, French, or Spanish based on users' locale. - The model must be able to contain the most recent 36 months of data. You need to select the appropriate model type and partitioning strategy to meet the requirements. What should you do? (More than one answer choice may achieve the goal. Select the BEST answer.)

Options

  • ACreate a multidimensional model with one partition for all of the data.
  • BCreate a multidimensional model with one partition for each month.
  • CCreate a tabular model with one partition for all of the data.
  • DCreate a tabular model with one partition for each month.

How the community answered

(26 responses)
  • A
    4% (1)
  • B
    77% (20)
  • C
    8% (2)
  • D
    12% (3)

Why each option

SSAS multidimensional natively supports metadata translations for multiple locales, and monthly partitioning enables efficient incremental processing as the model grows by 10 million rows per month.

ACreate a multidimensional model with one partition for all of the data.

A single partition for all data requires full reprocessing of the entire dataset each month, which is inefficient for a model adding 10 million rows per month across 36 months.

BCreate a multidimensional model with one partition for each month.Correct

The multidimensional model is required because SSAS multidimensional natively supports metadata translations that render captions in English, French, or Spanish based on the user's locale - a feature not fully supported in tabular models. Creating one partition per month allows incremental processing of only the newest 10 million rows each month rather than reprocessing the entire 360 million row dataset, significantly reducing processing time and resource usage.

CCreate a tabular model with one partition for all of the data.

SSAS tabular models lack native metadata translation support for multiple locales, so this option cannot satisfy the English/French/Spanish requirement; a single partition also forces full reprocessing each month.

DCreate a tabular model with one partition for each month.

While monthly partitioning is correct, SSAS tabular models do not provide native multilingual metadata translation support based on user locale, making this model type unsuitable for the translation requirement.

Concept tested: SSAS multidimensional translations and monthly partition strategy

Source: https://learn.microsoft.com/en-us/analysis-services/multidimensional-models/translations-in-multidimensional-models-analysis-services

Topics

#model type selection#partitioning strategy#translations#multidimensional vs tabular

Community Discussion

No community discussion yet for this question.

Full 70-466 Practice