I have a excel Column as a source in Copy Activity. I need to map the columns from source to sink (MS SQL Server).
I have one constraint, whenever I have a blank row in the excel source I should Stop the copy Activity.
I want to copy all the column data before the blank row, and ignore what ever after the blank row.
For example if I have this dataset:
| A | B |
|---|---|
| ABC | DEF |
| HIJ | KLM |
| NOP | QRS |
Then the first two rows should be imported and the last two rows should not be imported.
What should I do?