Question 66

The data engineer team has been tasked with configured connections to an external database that does not have a supported native connector with Databricks. The external database already has data security configured by group membership. These groups map directly to user group already created in Databricks that represent various teams within the company.
A new login credential has been created for each group in the external database. The Databricks Utilities Secrets module will be used to make these credentials available to Databricks users.
Assuming that all the credentials are configured correctly on the external database and group membership is properly configured on Databricks, which statement describes how teams can be granted the minimum necessary access to using these credentials?
  • Question 67

    Which of the following statements can successfully read the notebook widget and pass the python variable to a SQL statement in a Python notebook cell?
  • Question 68

    What is the purpose of gold layer in Multi hop architecture?
  • Question 69

    A Delta table of weather records is partitioned by date and has the below schema:
    date DATE, device_id INT, temp FLOAT, latitude FLOAT, longitude FLOAT
    To find all the records from within the Arctic Circle, you execute a query with the below filter:
    latitude > 66.3
    Which statement describes how the Delta engine identifies which files to load?
  • Question 70

    A CHECK constraint has been successfully added to the Delta table named activity_details using the following logic:

    A batch job is attempting to insert new records to the table, including a record where latitude = 45.50 and longitude = 212.67.
    Which statement describes the outcome of this batch insert?