Ultimate access to all questions.
You have a Fabric tenant containing a lakehouse named Lakehouse1. Lakehouse1 includes a Delta table named Customer. Querying the Customer table is slow, and you suspect this is due to a lack of maintenance on the table.
You need to determine if maintenance tasks have been performed on the Customer table.
Proposed Solution: Run the following Spark SQL statement:
DESCRIBE HISTORY Customer;
Does this solution meet the goal?