A Delta Lake table was created with the below query:
Consider the following query:
DROP TABLE prod.sales_by_store -
If this statement is executed by a workspace admin, which result will occur?
A Delta Lake table was created with the below query:
Consider the following query:
DROP TABLE prod.sales_by_store -
If this statement is executed by a workspace admin, which result will occur?
When the DROP TABLE statement is executed on a managed table in Delta Lake, both the table metadata and the physical data itself are deleted. The given query does not specify a location for the table, which implies it's a managed table. Therefore, dropping the table will result in the removal of both the table from the catalog and the data stored.
It's managed table, so data will be also removed
C is correct
Option C
C because its a managed table
Correct Answer: C No location provided in the table. So, it is a managed table. This will result in deleting the table meta data as well as table data.
Seems C, it's a managed table