When inserting data into a flat file destination, an empty line is shown at the end. How can i remove it?
Asked
Active
Viewed 669 times
1
-
Welcome to StackOverflow. Please take the [tour], learn asking good questions stackoverflow.com/help/how-to-ask, make a [mcve]. Please make the effort to show and explain your problem in textual form here and show your own attempts to do it yourself. – Yunnosch May 04 '17 at 06:37
-
line cannot be removed because the last row delimiter – May 07 '17 at 20:05
1 Answers
0
This line cannot be removed because the last line (before this line) need to ends with a row delimiter which is by default a carridge return + line feed CrLf
. This causes to show this line.
So you have to write a script after inserting data is finish if this procedure is needed.

Hadi
- 36,233
- 13
- 65
- 124