I have a for each activity that executes 9 different queries and writes to a csv. Currently, each query writes to a datatable and the datatable writes to the same csv file by overwriting the data. For each query, I need the datatable to be written to a separate csv file.
For example:
sql1 >> dt1 >> csv1
sql2 >> dt2 >> csv2
sql3 >> dt3 >> csv3