Month End Sale Special - 75% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: 75only

DP-800 Developing AI-Enabled Database Solutions Questions and Answers

Questions 4

You need to recommend a solution for the development team to retrieve the live metadata. The solution must meet the development requirements.

What should you include in the recommendation?

Options:

A.

Export the database schema as a .dacpac file and load the schema into a GitHub Copilot context window.

B.

Add the schema to a GitHub Copilot instruction file.

C.

Use an MCP server

D.

Include the database project in the code repository.

Buy Now
Questions 5

You are creating a table that will store customer profiles.

You have the following Transact-SQL code.

DP-800 Question 5

For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection Is worth one point.

DP-800 Question 5

Options:

Buy Now
Questions 6

You need to meet the database performance requirements for maintenance data

How should you complete the Transact-SQL code? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

DP-800 Question 6

Options:

Buy Now
Questions 7

You need to enable similarity search to provide the analysts with the ability to retrieve the most relevant health summary reports. The solution must minimize latency.

What should you include in the solution?

Options:

A.

a computed column that manually compares vector values

B.

a standard nonclustered index on the Fmbeddings (vector (1536)) column

C.

a full-text index on the Fmbeddings (vector (1536)) column

D.

a vector index on the Embedding* (vector (1536)) column

Buy Now
Questions 8

You need to generate embeddings to resolve the issues identified by the analysts. Which column should you use?

Options:

A.

vehicleLocation

B.

incidentDescrlption

C.

incidentType

D.

SeverityScore

Buy Now
Questions 9

You need to create a solution that meets the development requirements for retrieving the patient lists.

How should you complete the Transact-SQL code? To answer, select the appropriate options

in the answer area.

NOTE: Each correct selection is worth one point.

DP-800 Question 9

Options:

Buy Now
Questions 10

You have an Azure SQL database that contains a table named Tickets_Embeddings. Tickets_Embeddings contains a VECTOR(1536) column.

Embeddings are generated by using text-embedding-ada-002 and the /openai/v1/embeddings endpoint.

After a review of the current environment, the following changes are requested:

The AI architect has recommended switching to text-embedding-3-small.

The security team requires authentication by using Microsoft Entra managed identities only. Storing API keys in an application is prohibited.

Which two actions should you include in the solution? Each correct answer presents a part of the solution.

NOTE: Each correct selection is worth one point.

Options:

A.

Alter the database tables.

B.

Regenerate all the embeddings.

C.

Add a firewall rule.

D.

Change the primary keys for the tickets.

E.

Change the endpoint.

Buy Now
Questions 11

You have an Azure SQL database that contains a table named dbo.orders, dbo.orders contains a column named createDate that stores order creation dates.

You need to create a stored procedure that filters Orders by CreateDate for a single calendar day. The solution must be SARGable.

How should you complete the Transact-SQL code? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content.

NOTE: Each correct selection is worth one point.

DP-800 Question 11

Options:

Buy Now
Questions 12

You have an Azure SQL database that contains a table named stores, stores contains a column named description and a vector column named embedding.

You need to implement a hybrid search query that meets the following requirements:

• Uses full-text search on description for the keyword portion

• Returns the top 20 results based on a combined score that uses a weighted formula of 60% vector distance and 40% full-text rank

How should you configure the query components? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

DP-800 Question 12

Options:

Buy Now
Questions 13

You have an Azure SQL database that supports an OLTP application.

You need to write Transact-SQL code that returns blocking chain details. The output must return only sessions that ate blocked or are blocking other sessions.

How should you complete the code? To answer, drag the appropriate values to the correct targets. Each value may be used once, more than once, or not at all. You may need to drag the split bar between panes or scroll to view content

NOTE: Each correct selection is worth one point.

DP-800 Question 13

Options:

Buy Now
Questions 14

You have an Azure SQL database named SalesDB on a logical server named sales-sql01.

You have an Azure App Service web app named OrderApi that connects to SalesDB by using SQL authentication.

You enable a user-assigned managed identity named OrderApi-Id for OrderApi.

You need to configure OrderApi to connect to SalesDB by using Microsoft Entra authentication. The managed identity must have read and write permissions to SalesDB.

Which Transact-SQL statements should you run in SalesDB?

Options:

A.

CREATE LOGIN [OrderApi-Id] FROM EXTERNAL PROVIDER;

ALTER ROLE db_datareader ADD MEMBER [OrderApi-Id];

ALTER ROLE db_datawriter ADD MEMBER [OrderApi-Id];

B.

CREATE USER [OrderApi-Id] WITH PASSWORD = ' P@ssw0rd! ' ;

ALTER ROLE db_datareader ADD MEMBER [OrderApi-Id];

ALTER ROLE db_datawriter ADD MEMBER [OrderApi-Id];

C.

CREATE USER [OrderApi-Id] FROM EXTERNAL PROVIDER;

ALTER ROLE db_datareader ADD MEMBER [OrderApi-Id];

ALTER ROLE db_datawriter ADD MEMBER [OrderApi-Id];

D.

CREATE LOGIN [OrderApi-Id] WITH PASSWORD = ' P@ssw0rd! ' ;

ALTER SERVER ROLE sysadmin ADD MEMBER [OrderApi-Id];

Buy Now
Questions 15

You have a database named db1. The schema is stored in a Git repository as an SDK-style SQL database project The repository Contains the following GitHub Action workflow.

DP-800 Question 15

For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.

DP-800 Question 15

Options:

Buy Now
Questions 16

You are developing an Azure SQL solution by using Microsoft Visual Studio 2026. The solution uses a GitHub repository.

You plan to use GitHub Copilot Chat to access the GitHub repository tools by connecting to the GitHub MCP Server.

You need to configure Visual Studio to support the planned configuration. The solution must rely on OAuth to access the MCP server.

What should you create?

Options:

A.

the < SOLUTIONDIR > \.vscode\settings.json file that contains a URL of [https://api.githubcopilot.com/mcp/](https://api.githubcopilot.com/mcp/)

B.

the < SOLUTIONDIR > \.vs\settings.json file that contains the personal access token (PAT) that has the repo scope

C.

the < SOLUTIONDIR > \.github\mcp.json file that contains the personal access token (PAT) that has the repo scope

D.

the < SOLUTIONDIR > \.mcp.json file that contains a URL of [https://api.githubcopilot.com/mcp/](https://api.githubcopilot.com/mcp/)

Buy Now
Questions 17

You have a SQL database in Microsoft Fabric named SalesDB that contains a table named dbo.Products.

You need to modify SalesDB to meet the following requirements:

Create a vector index on the appropriate column.

Use a supplied natural language query vector.

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

NOTE: Each correct selection is worth one point.

DP-800 Question 17

Options:

Buy Now
Questions 18

You have an Azure SQL database that contains the following tables and columns.

DP-800 Question 18

Embeddings in the NotesEnbeddings and DescriptionEabeddings tables have been generated from values in the Description and notes columns of the Articles table by using different chunk sizes.

You need to perform approximate nearest neighbor (ANN) queries across both embedding tables. The solution must minimize the impact of using different chunk sizes.

What should you use? To answer, select the appropriate options in the answer area.

NOTE: Each correct selection is worth one point.

DP-800 Question 18

Options:

Buy Now
Exam Code: DP-800
Exam Name: Developing AI-Enabled Database Solutions
Last Update: Sep 26, 2026
Questions: 87

PDF + Testing Engine

$43.75  $174.99

Testing Engine

$33.75  $134.99
buy now DP-800 testing engine

PDF (Q&A)

$28.75  $114.99
buy now DP-800 pdf
dumpsmate guaranteed to pass

24/7 Customer Support

DumpsMate's team of experts is always available to respond your queries on exam preparation. Get professional answers on any topic of the certification syllabus. Our experts will thoroughly satisfy you.

Site Secure

mcafee secure

TESTED 26 Sep 2026