You need to recommend a solution that will resolve the ingestion pipeline failure issues. Which two actions
should you recommend? Each correct answer presents part of the solution. NOTE: Each correct selection is
worth one point.
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?
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?
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?
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 (or 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?