Winter Sale Limited Time 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: exc65

A data analyst wants the following output:

customer_name

number_of_orders

John Doe

388

Zhang San

234

Which statement will produce this output?

A.

SELECT customer_name, count(order_id) AS number_of_orders

FROM customers

JOIN orders

ON customers.customer_id = orders.customer_id

GROUP BY customer_name;

B.

SELECT customer_name, count(order_id) number_of_orders

FROM customers

JOIN orders

ON customers.customer_id = orders.customer_id USE customer_name;

C.

SELECT customerjiame, (order_id) number_of_orders

FROM customers

JOIN orders

ON customers.customer_id = orders.customer_id;

D.

SELECT customerjiame, count(order_id)

FROM customers

JOIN orders

ON customers.customer_id = orders.customer_id GROUP BY customerjiame;

A data analyst has been asked to configure an alert for a query that returns the income in the accounts_receivable table for a date range. The date range is configurable using a Date query parameter.

The Alert does not work.

Which of the following describes why the Alert does not work?

A.

Alerts don't work with queries that access tables.

B.

Queries that return results based on dates cannot be used with Alerts.

C.

The wrong query parameter is being used. Alerts only work with Date and Time query parameters.

D.

Queries that use query parameters cannot be used with Alerts.

E.

The wrong query parameter is being used. Alerts only work with drogdown list query parameters, not dates.

Which of the following is a benefit of Databricks SQL using ANSI SQL as its standard SQL dialect?

A.

It has increased customization capabilities

B.

It is easy to migrate existing SQL queries to Databricks SQL

C.

It allows for the use of Photon's computation optimizations

D.

It is more performant than other SQL dialects

E.

It is more compatible with Spark's interpreters

Which of the following approaches can be used to ingest data directly from cloud-based object storage?

A.

Create an external table while specifying the DBFS storage path to FROM

B.

Create an external table while specifying the DBFS storage path to PATH

C.

It is not possible to directly ingest data from cloud-based object storage

D.

Create an external table while specifying the object storage path to FROM

E.

Create an external table while specifying the object storage path to LOCATION

Which location can be used to determine the owner of a managed table?

A.

Review the Owner field in the table page using Catalog Explorer

B.

Review the Owner field in the database page using Data Explorer

C.

Review the Owner field in the schema page using Data Explorer

D.

Review the Owner field in the table page using the SQL Editor

A stakeholder has provided a data analyst with a lookup dataset in the form of a 50-row CSV file. The data analyst needs to upload this dataset for use as a table in Databricks SQL.

Which approach should the data analyst use to quickly upload the file into a table for use in Databricks SOL?

A.

Create a table by uploading the file using the Create page within Databricks SQL

B.

Create a table via a connection between Databricks and the desktop facilitated by Partner Connect.

C.

Create a table by uploading the file to cloud storage and then importing the data to Databricks.

D.

Create a table by manually copying and pasting the data values into cloud storage and then importing the data to Databricks.

In which circumstance will there be a substantial difference between the variable’s mean and median values?

A.

When the variable is of the categorical type

B.

When the variable is of the boolean type

C.

When the variable contains no outliers

D.

When the variable contains a lot of extreme outliers

The stakeholders.customers table has 15 columns and 3,000 rows of data. The following command is run:

After runningSELECT * FROM stakeholders.eur_customers, 15 rows are returned. After the command executes completely, the user logs out of Databricks.

After logging back in two days later, what is the status of thestakeholders.eur_customersview?

A.

The view remains available and SELECT * FROM stakeholders.eur_customers will execute correctly.

B.

The view has been dropped.

C.

The view is not available in the metastore, but the underlying data can be accessed with SELECT * FROM delta. `stakeholders.eur_customers`.

D.

The view remains available but attempting to SELECT from it results in an empty result set because data in views are automatically deleted after logging out.

E.

The view has been converted into a table.

What describes Partner Connect in Databricks?

A.

it allows for free use of Databricks partner tools through a common API.

B.

it allows multi-directional connection between Databricks and Databricks partners easier.

C.

It exposes connection information to third-party tools via Databricks partners.

D.

It is a feature that runs Databricks partner tools on a Databricks SQL Warehouse (formerly known as a SQL endpoint).