I have a mysql table that has a column with the type longtext, this column containt the content of a csv file. Is there a way to create from the content of this column a csv file and extract data from it by using talend ?

没有正确的解决方案

其他提示

You could extract the String from the DB using the proper Input component. Then use tExtractDelimitedField to split this long String string against a separator character (the comma, I guess). Don't forget to specify carefully your output schema

Finally, use tFileDelimitedOut to write the delimited file with data from the outgoing connection on the file system.

This could help: Validate a csv file

Sure, request the string out of the database, open a file and write the string to it - where's your actual problem?

许可以下: CC-BY-SA归因
不隶属于 StackOverflow
scroll top