how to add new line between header and data in flat file using informatica?

1.5k Views Asked by At

how to add new line between header and data in flat file using informatica?

below is the example.

current:

ID NAME AGE
1 RAJA 28
2 JOHN 29
3 JOE 2O

EXPECTED:

ID NAME AGE


1 RAJA 28
2 JOHN 29
3 JOE 20
2

There are 2 best solutions below

4
On

Use the Header Command option in session to generate the header row and newlines

e.g. echo ID NAME AGE;echo;echo

0
On

Use a command task in a workflow or post command in a session and provide the below unix script,

awk 'NR==2{print ""} {print}' FileName > FileName 

This will insert a blank line next to the header line in a file