Hi,
I have several transformations in which the reader is getting data from a database table. Now I want to add more columns to my database table. If I append columns to the table, it will not affect the transformation. However, if I insert columns, my transformation is ruined because it always recognize columns by column index instead of name. For example, I have column A, B and C in sequence in my database table, after some data validation and transformation, I get column 1, 2 ,3. A to 1, B to 2 and C to 3. Now I inserted a column D between A and B, and my database table has A, D, B, C in sequence. However, in my transformations, D replaced B, B replaced C and C is not connected, which end up with A to 1, D to 2, B to 3 (But I actually still want A to 1, B to 2, C to 3 and dont care about D). I can't understand the logic to recognize columns by index. Can we have the transformation recognize columns by name, not by index?