Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have a list of CSV files which i receive for ETL into database every month. Its in a folder. My data has ; in many columns as well. For example, in the location column values like New York; USA are present, which i want to appear in a single column instead of splitting into many columns. How do i specify delimiter then?
Edit: My data is in a csv file and looking like below, it has 3 columns id, Introduction and Verical. I want to remove comma(,) appearing in the values of each column and then save results as a csv file with 3 distinct columns with their values.
id Introduction Vertical Jinshan District, Shanghai, China international saler at Shanghai Triowin Automation Machinery Co.,Ltd Machinery, Transportation Pudongxin District, Shanghai, China Market Communication Specialist, Shanghai JiaoTong University - Kedge Business School Education Management Nanjing City, Jiangsu, China System Tester at Jiangsu HopeRun Software Co., Ltd. Computer Software
I want output in 3 separate columns without comma values like below.
id Introduction Vertical Jinshan District Shanghai China international saler at Shanghai Triowin Automation Machinery Co.Ltd Machinery Transportation Pudongxin District Shanghai China Market Communication Specialist Shanghai JiaoTong University - Kedge Business School Education Management Nanjing City Jiangsu China System Tester at Jiangsu HopeRun Software Co. Ltd. Computer Software
Ok, this is what worked for me. A simple thing, all i did was changed Encoding to UTF-8 in the Advanced settings tab in iFileInputDelimited component..
My data is in a csv file and looking like below, it has 3 columns id, Introduction and Verical. I want to remove comma(,) appearing in the values of each column and then save results as a csv file with 3 distinct columns with their values.
id Introduction Vertical Jinshan District, Shanghai, China international saler at Shanghai Triowin Automation Machinery Co.,Ltd Machinery, Transportation Pudongxin District, Shanghai, China Market Communication Specialist, Shanghai JiaoTong University - Kedge Business School Education Management Nanjing City, Jiangsu, China System Tester at Jiangsu HopeRun Software Co., Ltd. Computer Software
I want output in 3 separate columns without comma values like below.
id Introduction Vertical Jinshan District Shanghai China international saler at Shanghai Triowin Automation Machinery Co.Ltd Machinery Transportation Pudongxin District Shanghai China Market Communication Specialist Shanghai JiaoTong University - Kedge Business School Education Management Nanjing City Jiangsu China System Tester at Jiangsu HopeRun Software Co. Ltd. Computer Software
Not working! Can you post a screenshot if in case it worked for you?
once you have " around fields, once you have not, it's difficult to give you the answer if the question change from a topic to another.
please, for people trying to help others, be constant and don't open multiple topics for the same question.
@TRF gave the right answer
I explained it here : https://community.talend.com/t5/Design-and-Development/newline-character-in-middle-of-csv-column/m-p...
Ok, this is what worked for me. A simple thing, all i did was changed Encoding to UTF-8 in the Advanced settings tab in iFileInputDelimited component..
I had tried same solution giving UTF -8 (using open source talend tool ) but it was reading only the half record
Ex : Engl,ish , Hin,di , then
Out put is Engl , Hin
Not sure how to read the complete value . please help