I am having a.CSV file and I am trying to load to SQLDB using azure data factory but in the CSV file there is a column "Address" in that column there is comma in between address so ADF is splitting that column into multiple columns because CSV stands for (comma-separated values) and because of that address column is being split into multiple columns is there any way to resolve this issue.
2
-
Are you using a quote character around the fields with commas?Mark Kromer MSFT– Mark Kromer MSFT2020-03-03 20:10:40 +00:00Commented Mar 3, 2020 at 20:10
-
Hi gaurav modi, If my answer is helpful for you, please mark it as answer( click on the check mark beside the answer to toggle it from greyed out to filled in.). This can be beneficial to other community members. And people are more glad to help the people when their answer could be marked. Thank you.Leon Yue– Leon Yue2020-03-05 07:35:08 +00:00Commented Mar 5, 2020 at 7:35
Add a comment
|
2 Answers
According you description, It's sure that the csv file using the comma as column delimiter.
Change the dataset column delimiter to Pipe(|) doesn't works.
For this question, others have asked the same questions in Stack overflow. Data factory do not support change the csv file schema during Copy Active or Data Flow.
I also asked Azure Support for helps before, the only way they suggest me is that change the source csv file.
Hope this helps.
