I am creating a ssis solution which encompasses a parent - child design pattern. In my child package there a table AID which needs to be checked for data. The table consists of 2 fields: [tableid] [recID] TableID is the identifier of a table where data resides. recID is the row identifier for the data in that table. There is alson another table called usageTables which consists fo fields [TableID][TableName] There are total of 7 different tables where data can reside. The data retrieved from these tables then goes into a DQS component to be cleansed.
I am trying to decide the most efficient way to send data from the data sources to the DQS component. is it to have have 7 data flow tasks for each table?