Ultimate access to all questions.
Upgrade Now 🚀
Sign in to unlock AI tutor
Describe the process of reviewing a history of table transactions in a Delta Lake table. Explain how this information can be used to understand data evolution and troubleshoot issues.
A
Use the SHOW CREATE TABLE command to view the table creation details and infer transaction history.
B
Use the DESCRIBE HISTORY command to view a detailed history of transactions, including who made changes, when they were made, and what changes were made.
C
Use the SELECT * FROM table_name command to inspect the data and deduce transaction history.
D
Use the VACUUM command to clean up the table and review the transaction history.