Sample CSV file:
“id”, “Stage”, “Stage”,“Type”
“1”,“close”,“config”, “test”
“1”,“open”,“plan”, “test”
We have duplicate columns name and different values… But CSV parser snap throws only one field.
How can i read both duplicate fields?
Sample CSV file:
“id”, “Stage”, “Stage”,“Type”
“1”,“close”,“config”, “test”
“1”,“open”,“plan”, “test”
We have duplicate columns name and different values… But CSV parser snap throws only one field.
How can i read both duplicate fields?
There is a workaround mentioned here (though it mentions dat files, it’s using the CSV parser): Same column names in dat file
Thanks. It works for me. Appreciate!!!