Exam DP-300 All QuestionsBrowse all questions from this exam
Question 11

HOTSPOT -

You are building a database in an Azure Synapse Analytics serverless SQL pool.

You have data stored in Parquet files in an Azure Data Lake Storage Gen2 container.

Records are structured as shown in the following sample.

The records contain two applicants at most.

You need to build a table that includes only the address fields.

How should you complete the Transact-SQL statement? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

Hot Area:

    Correct Answer:

    Box 1: CREATE EXTERNAL TABLE -

    An external table points to data located in Hadoop, Azure Storage blob, or Azure Data Lake Storage. External tables are used to read data from files or write data to files in Azure Storage. With Synapse SQL, you can use external tables to read external data using dedicated SQL pool or serverless SQL pool.

    Syntax:

    CREATE EXTERNAL TABLE { database_name.schema_name.table_name | schema_name.table_name | table_name }

    ( [ ,...n ] )

    WITH (

    LOCATION = 'folder_or_filepath',

    DATA_SOURCE = external_data_source_name,

    FILE_FORMAT = external_file_format_name

    Box 2. OPENROWSET -

    When using serverless SQL pool, CETAS is used to create an external table and export query results to Azure Storage Blob or Azure Data Lake Storage Gen2.

    Example:

    AS -

    SELECT decennialTime, stateName, SUM(population) AS population

    FROM -

    OPENROWSET(BULK 'https://azureopendatastorage.blob.core.windows.net/censusdatacontainer/release/us_population_county/year=*/*.parquet',

    FORMAT='PARQUET') AS [r]

    GROUP BY decennialTime, stateName

    GO -

    Reference:

    https://docs.microsoft.com/en-us/azure/synapse-analytics/sql/develop-tables-external-tables

Discussion
HichemZe

Question FOR DP-203 , Not For DBA (DP-300)

learnazureportal

The DP-300 exam engine has been updated and some questions also cover Azure Data engineering side. You don't have to repeat the same statement for each question.

jerkyflexoff

I don't seen any mention of Synapse Analytics, Databricks InsightsHD or Azure Data Factory in the Skills Outline on the DP-300 even with the incoming update to the questions Nov 24th 2021. Where have you got this information from?

Ciupaz

You're right, this question is more related to the DP-203 exam (Azure Data Engineer Associate).

Sr18

DP 203, answers are correct.

learnazureportal

The Given answer is correct.

kkkiet

CREATE TABLE OPENROWSET

Ciupaz

Azure Synapse Analytics questions are not part of the DP-300 exam.

napratz

Question FOR DP-203 , Not For DBA (DP-300)

o2091

is the answer correct?