Question 11
You have a GitHub Actions workflow that builds and deploys an Azure SQL database. The schema is stored in a GitHub repository as an SDK-style SQL database project.
Following a code review, you discover that you need to generate a report that shows whether the production schema has diverged from the model in source control.
Which action should you add to the pipeline?
Question 12
Note: This question is part of a series of questions that present the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some question sets might have more than one correct solution, while others might not have a correct solution.
After you answer a question in this section, you will NOT be able to return to it. As a result, these questions will not appear in the review screen.
You have a SQL database in Microsoft Fabric that contains a table named dbo.Orders.
dbo.Orders has a clustered index, contains three years of data, and is partitioned by a column named OrderDate by month.
You need to remove all the rows for the oldest month. The solution must minimize the impact on other queries that access the data in dbo.Orders.
Solution: Identify the partition scheme for the oldest month, and then run the following Transact- SQL statement.
ALTER TABLE dbo.Orders
DROP PARTITION SCHEME (partition_scheme_name);
Does this meet the goal?
Question 13
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 complete solution.
NOTE: Each correct selection is worth one point.
Question 14
What is a key benefit of embedding vectors in SQL databases?
Question 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.
For each of the following statements, select Yes if the statement is true. Otherwise, select No. NOTE: Each correct selection is worth one point.

