简体   繁体   中英

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

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

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

eg echo ID NAME AGE;echo;echo

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM