I am using one for loop activity & inside that i have used extract data table activity. The process is working fine as expected & extracting data also but i want to store every iteration extracted data in single output table?
please help me how to store in single table?
First, define a master DataTable with the same columns as your extraction DataTable outside of your loop. Then, for each iteration in your loop, after extracting the data, merge the current extraction DataTable into the master DataTable using the Merge Data Table activity.
This ensures that all the extracted data is preserved in one combined table.
In the properties of Extract table data activity find the Append results option and enable it.
While extracting the data everytime it will helps to append all the data in a single datatable.
Check the below screenshot for better understanding,