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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
ali_hijazi1
Contributor
Contributor

integrate XML files into SQL database

Hello
I'm new to Talend and I downloaded Open Studio for data integration
I have a folder that contains a bunch of XML files (around 120 files)
each file is related to an employee and of course all got the same structure
what i want is to read all of these files and save the data as relational data in MS SQL server

Please advise on how to accomplish this

Labels (2)
1 Reply
Anonymous
Not applicable

Hi 
Use tFileList to iterate each XML file and parse it with tFileInputXML, merge all the records and load them to MS SQL server. The job looks like:
tFileList--iterate--tFileInputXML--main--tUnite--main--tMSSQLOutput

Please read the component user documentation and learn these components.