nerdexam
Microsoft

70-467 · Question #94

You need to select the appropriate mode for the Sales database. Which mode should you select?

The correct answer is B. Direct Query. Direct Query mode sends queries directly to the underlying data source at query time, making it suitable for large or real-time datasets that cannot be fully imported into memory.

Design BI data models

Question

You need to select the appropriate mode for the Sales database. Which mode should you select?

Options

  • AROLAP
  • BDirect Query
  • CMOLAP
  • DIn-Memory

How the community answered

(56 responses)
  • A
    5% (3)
  • B
    73% (41)
  • C
    7% (4)
  • D
    14% (8)

Why each option

Direct Query mode sends queries directly to the underlying data source at query time, making it suitable for large or real-time datasets that cannot be fully imported into memory.

AROLAP

ROLAP stores aggregations in relational tables and queries the relational engine, but it still requires a defined cube structure in SSAS and does not provide the live pass-through query behavior needed here.

BDirect QueryCorrect

Direct Query mode in SQL Server Analysis Services (SSAS) or Power BI does not import data into an in-memory cache - instead, every query is translated and forwarded live to the source database. This allows the Sales database to reflect real-time data changes and supports datasets too large to fit in memory. It is the correct choice when freshness and scale requirements prohibit a full data import.

CMOLAP

MOLAP imports and pre-aggregates data into a multidimensional cube stored on disk, which means data is not real-time and imposes storage overhead unsuitable for a large Sales dataset requiring live access.

DIn-Memory

In-Memory (VertiPaq) mode imports the entire dataset into compressed in-memory storage, which is impractical for very large Sales databases where live query pass-through is required.

Concept tested: SSAS storage mode selection - Direct Query

Source: https://learn.microsoft.com/en-us/analysis-services/tabular-models/directquery-mode-ssas-tabular

Topics

#DirectQuery mode#ROLAP vs MOLAP#SSAS database modes#real-time data

Community Discussion

No community discussion yet for this question.

Full 70-467 Practice