Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
Aryan123
Contributor
Contributor

How to dynamically create excel sheets in Talend community(Free version)?

Hi, I want to dynamically create excel sheets in Talend free version after every 10 million records. Is there any method to do it? Can someone provide a solution with a flowchart.

Talend Studio 

Labels (2)
1 Reply
Shicong_Hong
Employee
Employee

Hello 

One potential solution is to use the 'Split output in several files' option on the tFileOutputDelimited component to split the data into multiple text files. Afterward, iterate through each text file and append all the data into a single Excel file with a dynamic sheet. The Job would resemble the following:

tMysqlInput--main--tFileOutputDelimiited

|onsubjobok

tFileList--iterate--tFileInputDelimted--main--tFileOutputExcel

 

Regards

Shicong