nerdexam
Microsoft

DP-600 · Question #43

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might h

The correct answer is A. Yes. A Spark command that provides the transaction history of a Delta table would successfully identify whether maintenance tasks were performed.

Submitted by stefanr· Apr 18, 2026Maintain a data analytics solution

Question

Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution. After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen. You have a Fabric tenant that contains a lakehouse named Lakehouse1. Lakehouse1 contains a Delta table named Customer. When you query Customer, you discover that the query is slow to execute. You suspect that maintenance was NOT performed on the table. You need to identify whether maintenance tasks were performed on Customer. Solution: You run the following Spark SQL statement: DESCRIBE HISTORY customer Does this meet the goal?

Options

  • AYes
  • BNo

How the community answered

(28 responses)
  • A
    71% (20)
  • B
    29% (8)

Why each option

A Spark command that provides the transaction history of a Delta table would successfully identify whether maintenance tasks were performed.

AYesCorrect

A Spark command such as `DESCRIBE HISTORY <table_name>` on a Delta table logs all operations, including maintenance tasks like OPTIMIZE, VACUUM, and ZORDER, thereby allowing identification of when these tasks were executed. This command specifically exposes the table's transaction log, detailing each modification.

BNo

Any Spark command that does not specifically query the Delta table's transaction log or operational history would fail to meet the goal of identifying past maintenance tasks.

Concept tested: Delta Lake table history and maintenance tracking

Source: https://learn.microsoft.com/en-us/fabric/data-engineering/delta-lake-overview#describe-history

Topics

#Delta Lake#Table Maintenance#Spark SQL#Lakehouse

Community Discussion

No community discussion yet for this question.

Full DP-600 Practice