Databricks-Certified-Professional-Data-Engineer Exam Question 41

A newly joined team member John Smith in the Marketing team who currently does not have any access to the data requires read access to customers table, which of the following statements can be used to grant access.
  • Databricks-Certified-Professional-Data-Engineer Exam Question 42

    Your team member is trying to set up a delta pipeline and build a second gold table to the same pipeline with aggregated metrics based on an existing Delta Live table called sales_orders_cleaned but he is facing a problem in starting the pipeline, the pipeline is failing to state it cannot find the table sales_orders_cleaned, you are asked to identify and fix the problem.
    1.CREATE LIVE TABLE sales_order_in_chicago
    2.AS
    3.SELECT order_date, city, sum(price) as sales,
    4.FROM sales_orders_cleaned
    5.WHERE city = 'Chicago')
    6.GROUP BY order_date, city
  • Databricks-Certified-Professional-Data-Engineer Exam Question 43

    A data engineer has set up a notebook to automatically process using a Job. The data engineer's manager wants
    to version control the schedule due to its complexity.
    Which of the following approaches can the data engineer use to obtain a version-controllable con-figuration of
    the Job's schedule?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 44

    The data architect has mandated that all tables in the Lakehouse should be configured as external (also known as "unmanaged") Delta Lake tables.
    Which approach will ensure that this requirement is met?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 45

    A data engineer is using a Databricks SQL query to monitor the performance of an ELT job. The ELT job is triggered by a specific number of input records being ready to process. The Databricks SQL query returns the number of minutes since the job's most recent runtime. Which of the following approaches can enable the data engineering team to be notified if the ELT job has not been run in an hour?