You work for MDFT Pro, a well-known training agency that manages student data across multiple databases. Mark, a Data Engineer at MDFT Pro, is building a dynamic data orchestration pipeline called StudentDataSync. The pipeline needs to copy data from 25 different tables in an Azure SQL database into a Fabric lakehouse. To make the pipeline maintainable, Mark uses a metadata-driven approach with a control table that lists all the schemas and table names to be copied. The pipeline has two activities: a Lookup activity named “Lookup Schema and Table” that queries the control table and returns a list of schemas and tables, followed by a ForEach activity named “Extraction Loop” that iterates over each table and copies it. Mark is now configuring the ForEach activity and needs to specify which items the loop should iterate over. The pipeline expression for accessing the Lookup activity’s output begins with @activity('Lookup Schema and Table'). and Mark needs to complete it to reference the array of table rows returned by the lookup.
How should Mark complete the expression to properly configure the items property of the ForEach activity?
Choose the correct answer from the options below.
Explanations for each answer: