I have not found the entire MSDN article about this, but I think this figure of this MSDN article clearly shows this.
In a common data source, there are external columns that store information about the data structure in the source and output columns, which store the structure of the information that it sends along the data path. It copies data from external columns to output columns. Data recipients have input columns that store data about the date structure that it receives from the data path and external columns that describe the structure at the destination. It copies data from input columns to external columns.
In your case, it should be:
Source: External columns: Name Type Length Id DT_I4 0 Name DT_STR 30 Output columns: Name Type Length Id DT_I4 0 Name DT_STR 30 Destination: Input columns: Name Type Length Id DT_I4 0 Name DT_STR 30 External columns: Name Type Length Name DT_STR 50
source share