Hi,
can i automatically delete columns from a csv file i dont need?
Sergey yes, you can!
Between your CSV source and your destination apply a query filter condition that only selects the columns that you want:
For example: SELECT A,E,F would only give you columns A,E and F.
SELECT A,E,F
Powered by FreeFlarum.(remove this footer)