Does the solution meet the goal?

Note: This question is a part of a series of questions that presents the same scenario. Each question in the series contains a unique solution that might meet the stated goals. Some questions sets might have more than one correct solution, while others 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 use ASP.NET Core MVC with ADO.NET to develop an application. You implement database sharding for the application by using Azure SQL Database. You establish communication links between the shard databases.
You need to implement a strategy that allows a group of operations that are performed on multiple Azure databases to be rolled back on all databases if any of the operations fail.
Solution:
Create stored procedures in each Azure SQL database instance to perform operations for each respective database.
Invoke a named transaction in each stored procedure.
Establish a new transaction scope in a using block. Within the block, establish connections to each Azure SQL Databases instance and run the stored procedure. If no exception occurs, commit the scoped transaction.
Does the solution meet the goal?
A. Yes
B. No

microsoft-exams

Leave a Reply

Your email address will not be published. Required fields are marked *


The reCAPTCHA verification period has expired. Please reload the page.