
Ultimate access to all questions.
A data engineer attempts to delete a Spark SQL table named my_table, intending to remove both its metadata and data. They use the command: DROP TABLE IF EXISTS my_table;. After execution, my_table disappears from the table list, but the data files remain. Why do the data files persist despite the metadata deletion?_
A
The table was a managed table.
B
The table was set up as an external table.
C
The table's data exceeded 10 GB.
D
The table's data was under 10 GB.
E
The table was specified without a location.