I have to copy data from oracle table to a csv file in azure blob. I used the copy activity component and add the proper configuration. But the problem is oracle data have some commas because of which the csv file generated does not contain proper data.Please help with this problem i am new to azure data factory below is the link of my blob dataset properties.
2 Answers
0
votes
Actually I need some information from you. What is the delimiter used in your CSV file. Is it comma or some other like pipe.
If you have used comma as a delimiter then you need to use the replace function to replace the comma which is there in your data to prevent it from being delimited.
Use the below code to replace:
Replace(name, "," , " ")
/Here name is the column name/
If the delimiter is pipe then the data might contain pipe. You need to use the REPLACE function in the similar way.
Regards,
Pratik
quoteChar
property. – Thomas