
Explanation:
The proposed solution suggests using an Azure Data Factory pipeline with a schedule trigger to:
1. Stored Procedure Activity Limitations in Azure Data Factory
2. Azure Synapse Analytics R Support Limitations
sp_execute_external_script for R execution, this functionality is not available in Azure Synapse Analytics3. Architectural Mismatch
To properly meet the goal, consider these alternatives:
The proposed solution fails because stored procedures in Azure Data Factory cannot execute R scripts, and Azure Synapse Analytics does not support R script execution through stored procedures. The architectural approach of transforming data after loading into the data warehouse is also suboptimal for this scenario.
Ultimate access to all questions.
You have an Azure Data Lake Storage account with a staging zone. You need to design a daily process to ingest incremental data from this staging zone, transform the data by running an R script, and then load the transformed data into an Azure Synapse Analytics data warehouse.
Proposed Solution: You use an Azure Data Factory schedule trigger to run a pipeline. This pipeline copies the data to a staging table in the data warehouse and then uses a stored procedure to execute the R script.
Does this solution meet the goal?
A
Yes
B
No
No comments yet.