SSIS - I have data loaded and various transformations on the data complete, the problem is there is a parent/child relationship managed in the data - best explained by an example
each row has (column names are made up) row_key parent_row_key row_name parent_row_name
some rows have row_key == parent_row_key (their own parent) some rows relate to another row (row 25 is the parent to row 44 for example).
In this case, row 25 is parent to row 44. I need to put row 25's row_name in row 44's parent_row_name. How do I query the data in the pipeline for the value?
thanks.