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

You have noticed that Databricks SQL queries are running slow, you are asked to look reason why queries are running slow and identify steps to improve the performance, when you looked at the issue you noticed all the queries are running in parallel and using a SQL endpoint(SQL Warehouse) with a single cluster. Which of the following steps can be taken to improve the performance/response times of the queries?
*Please note Databricks recently renamed SQL endpoint to SQL warehouse.
  • Databricks-Certified-Professional-Data-Engineer Exam Question 67

    Drop the customers database and associated tables and data, all of the tables inside the database are managed tables. Which of the following SQL commands will help you accomplish this?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 68

    Which of the following section in the UI can be used to manage permissions and grants to tables?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 69

    Which of the following scenarios is the best fit for AUTO LOADER?
  • Databricks-Certified-Professional-Data-Engineer Exam Question 70

    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