Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
HI team ,
Please help me with the exact difference between tFileInputRaw and tFileInputrow . both are very similar where we can read complete set of file in one row .
Hello @Moe ,
tFileInputRaw reads all the content of a file and sends it to a single output column.
use:- This component is used to gather together data and send it to a single output column for subsequent processing by another component.
tFileInputFullRow reads a given file row by row.
use:- tFileInputFullRow reads a file row by row and sends complete rows as defined in the schema to the next Job component via a Row link.
thanks