I am creating an SSIS package, it has one execute SQL task and one data flow task.
In the data flow task, the data is moved from from different source tables to the respective target tables.
Can we control the order in which the ETL execution takes place, so that each table transformation completes before the next one starts?
I don't want to create multiple packages, need to handle it one package.
For e.g., in the data flow task, we have the below code executing:
- S1->data conversion transf->T1
- S2->data conversion transf->T2,
- S3->data conversion transf->T3,
- S4->data conversion transf->T4,...................
And the data load sequence must be as follows:
- S1->data conversion transf->T1,
- S4->data conversion transf->T4,
- S3->data conversion transf->T3,
- S2->data conversion transf->T2,...............
Please let me know how to achieve it.

