Deal of The Day! Hurry Up, Grab the Special Discount - Save 25% - Ends In 00:00:00 Coupon code: SAVE25
Welcome to Pass4Success

- Free Preparation Discussions

Databricks Exam Databricks-Certified-Data-Engineer-Associate Topic 5 Question 30 Discussion

Actual exam question for Databricks's Databricks-Certified-Data-Engineer-Associate exam
Question #: 30
Topic #: 5
[All Databricks-Certified-Data-Engineer-Associate Questions]

A data engineer is running code in a Databricks Repo that is cloned from a central Git repository. A colleague of the data engineer informs them that changes have been made and synced to the central Git repository. The data engineer now needs to sync their Databricks Repo to get the changes from the central Git repository.

Which of the following Git operations does the data engineer need to run to accomplish this task?

Show Suggested Answer Hide Answer
Suggested Answer: D

To include a property indicating that a table contains personally identifiable information (PII), the TBLPROPERTIES keyword is used in SQL to add metadata to a table. The correct syntax to define a table property for PII is as follows:

CREATE TABLE customersInFrance

USING DELTA

TBLPROPERTIES ('PII' = 'true')

AS

SELECT id,

firstName,

lastName

FROM customerLocations

WHERE country = 'FRANCE';

The TBLPROPERTIES ('PII' = 'true') line correctly sets a table property that tags the table as containing personally identifiable information. This is in accordance with organizational policies for handling sensitive information.

Reference: Databricks documentation on Delta Lake: Delta Lake on Databricks


Contribute your Thoughts:

Corrinne
9 days ago
Well, duh, the answer is C) Pull. That's the obvious choice to sync the local repo with the remote one.
upvoted 0 times
...
Gilberto
13 days ago
Yes, Pull is the correct operation to get the changes from the central Git repository to the Databricks Repo.
upvoted 0 times
...
Jeniffer
14 days ago
I agree with Ezekiel, Pull operation will sync the changes from the central Git repository.
upvoted 0 times
...
Ezekiel
15 days ago
I think the data engineer needs to run the Pull operation.
upvoted 0 times
...

Save Cancel