Hi PJ ,
Thankyou for using Microsoft Q&A platform and thanks for posting your question here. As I understand your question, you are witnessing a blank row at the top of the output file which is not expected and you want to remove it. Please let me know if that is not the correct understanding.It would be great if you could share the screenshot of the source file data so that we can replicate your scenario exactly.
First of all, when you uncheck the 'first row as header' option ADF will treat the header as the first row in the dataset. It will not erase the column name . I suspect that the empty record is present in the source file in your case. Kindly recheck the same.
In order to remove the column names and avoid empty row generation in the target file , you can try one of these approaches:
- Keep the 'first row as header' unchecked in source dataset and provide 1 in the skip line count in source setting. In case your source file has an empty row, then use 2 in skip line count.
- Use filter transformation with the condition:
!isNull(Column_1) && !isNull(Column_2)after source transformation
Hope it helps. Kindly accept the answer if it is helpful. Thankyou