Paul Dokken
Paul Dokken

Reputation: 1

Read XML data into SQL Server database

I have created an Adobe LiveCycle form that collects the form data into an XML file. I would like to read this XML data into a SQL Server 2008 database. The format of the data is a parent table with 2 child tables. What are the options for getting the data into a database.

Upvotes: 0

Views: 8194

Answers (2)

GWhite
GWhite

Reputation: 426

Your question is nearly identical to Importing data from XML file to SQL database.

You could try the 2008 version of the SQL Server Import/Export Wizard.

If you know how to write code, almost every programming language has a way to talk to a database and SQL server should be supported by all of them.

Upvotes: 1

Related Questions