I have 4 SQL tables.
3)Student( same structure as EMployee but no input)
4)Metadata ( contains the source and destination information such as source: Employee destination: Student)
My goal is to create an ADF pipeline that will fetch metadata table information (source and destination) and will perform copy activity from the source to destination as per data in the Metadata table.
Employee Table
Metadata Table
Engineer Table
I want my ADF pipeline to fetch the source and destination data from Metadata table and perform copy activity from source to destination as per mentioned in Metadata table.
I have tried the below approaches but not succeeded yet.
getMetadata---> copyActivity [ not able to fetch the metadata table data]
getmetadata--->foreach loop----> copy activity [ again for able to fetch the data]
You should use Lookup active not Get Metadata active.
According you problem,, please follow this workaround:
Metadata
.
Metadata
:
HTH.