Ultimate access to all questions.
A Data Engineer must create a Parquet bronze table that persists in a designated external storage path.
Which type of table should be created in this situation?
Explanation:
The correct scenario to use an external table is when the data must be stored in a specific external location (e.g., cloud storage) and retain the data even if the table is dropped. Managed tables store data in a system-managed location, and their data is deleted upon table deletion. Here, the engineer wants explicit control over the storage path in an external location.
LOCATION
path in an external storage. This ensures the data resides in the specified path and persists after table deletion.LOCATION
clause is used instead.LOCATION
; specifying a custom path implicitly creates an external table, not a managed one.