Exam Certified Data Engineer Professional All QuestionsBrowse all questions from this exam
Question 34

The data architect has mandated that all tables in the Lakehouse should be configured as external Delta Lake tables.

Which approach will ensure that this requirement is met?

    Correct Answer: C

    To ensure that all tables in the Lakehouse are configured as external Delta Lake tables, the LOCATION keyword should be used whenever a table is created. This approach specifies the external storage location for each table individually, ensuring compliance with the data architect's mandate.

Discussion
QuadronoidOption: C

C is correct. Location keyword should be in create script of the table

mouad_attaqiOption: C

C is correct, the key word to be used is Location, the keyword external is optional

leopedroso1Option: C

C is the correct answer. According to the documentation only the LOCATION is needed to make a table external. Moreover, we can also assume the keyword EXTERNAL is optional in the SQL statement. https://docs.databricks.com/en/sql/language-manual/sql-ref-external-tables.html

CYOption: A

'A' seems more appropriate. All the tables in Delta lake house should be marked as external.. which can be achieved using location keyword at database level instead of each table level.

Yogi05Option: D

Why not D? i know both C and D are same, but D is more precise

Yogi05

my bad. D is having EXTERNAL keyword, got confused. C is correct answer

chokthewaOption: D

The correct is D

mht3336

there is no EXTERNAL key word in databricks, however it is there for other systems like Oracle, Hive, Cassandra etc.

Dusica

and microsoft synapse

Laraujo2022Option: A

If you set a location in a database level, all tables under this database are automatically external table, in my opinion is A is correct.

Isio05

According to what I've found in Databricks forums: "Database location and Table location are independent". So it looks like specifying location at DB level is not sufficient as tables will be still created as managed ones.