Skip to main content

I am facing the problem that I have output from 4 components and the I am writing them on different text file writers is there any way I can combine the outputs into a single text file writer if not can I combine the outputs from the different components and write it in a single text file writer.

HI @Yasharth Misra 

There are Join and Union (Union Same) steps that can be used to achieve that.

Join allows you to append columns from one input to another making wide rows.

Union allows you to append rows from different inputs one after another.

Union Same is much like Union, but it requires inputs to have identical structure (number of columns, columns names and data type).


Reply