Exam Name: | Databricks Certified Data Engineer Associate Exam | ||
Exam Code: | Databricks-Certified-Data-Engineer-Associate Dumps | ||
Vendor: | Databricks | Certification: | Databricks Certification |
Questions: | 99 Q&A's | Shared By: | hasan |
Which of the following describes the type of workloads that are always compatible with Auto Loader?
In which of the following scenarios should a data engineer select a Task in the Depends On field of a new Databricks Job Task?
Which of the following describes when to use the CREATE STREAMING LIVE TABLE (formerly CREATE INCREMENTAL LIVE TABLE) syntax over the CREATE LIVE TABLE syntax when creating Delta Live Tables (DLT) tables using SQL?
A data engineer wants to create a new table containing the names of customers who live in France.
They have written the following command:
CREATE TABLE customersInFrance
_____ AS
SELECT id,
firstName,
lastName
FROM customerLocations
WHERE country = ’FRANCE’;
A senior data engineer mentions that it is organization policy to include a table property indicating that the new table includes personally identifiable information (Pll).
Which line of code fills in the above blank to successfully complete the task?