0

What I have is XML with country-city pairs (Global Weather web service). I want that data to be loaded to the database table (MS SQL Server). I have done it with XPATH with one column (/City), but don't know how to import two columns to the table. How can I set output to be two columns and make Data Flow load these two columns to the database table?

EDIT:

What I have now is Web Service Task, which takes data from http://www.webservicex.net/globalweather.asmx?wsdl web service. Next, there is Data Flow Task with two things: XML Data Source that takes this XML and SQL Server Destination that loads one column of nodes from this XML to database table.

pbies
  • 666
  • 11
  • 28

1 Answers1

0

I've already did this by using XSLT transformation. I've readed XML, then transformed it by XSLT to CSV format and then put it into the database table.

pbies
  • 666
  • 11
  • 28