Valid DP-203 Dumps shared by EduDump.com for Helping Passing DP-203 Exam! EduDump.com now offer the newest DP-203 exam dumps, the EduDump.com DP-203 exam questions have been updated and answers have been corrected get the newest EduDump.com DP-203 dumps with Test Engine here:
You have an Azure subscription that contains an Azure SQL database named DB1 and a storage account named storage1. The storage1 account contains a file named File1.txt. File1.txt contains the names of selected tables in DB1. You need to use an Azure Synapse pipeline to copy data from the selected tables in DB1 to the files in storage1. The solution must meet the following requirements: * The Copy activity in the pipeline must be parameterized to use the data in File1.txt to identify the source and destination of the copy. * Copy activities must occur in parallel as often as possible. Which two pipeline activities should you include in the pipeline? Each correct answer presents part of the solution. NOTE: Each correct selection is worth one point.
Correct Answer: B,D
Lookup: This is a control activity that retrieves a dataset from any of the supported data sources and makes it available for use by subsequent activities in the pipeline. You can use a Lookup activity to read File1.txt from storage1 and store its content as an array variable1. ForEach: This is a control activity that iterates over a collection and executes specified activities in a loop. You can use a ForEach activity to loop over the array variable from the Lookup activity and pass each table name as a parameter to a Copy activity that copies data from DB1 to storage11.