Andy
Andy

Reputation: 1090

XSD to MySQL Schema

I need to convert an XML to a MySQL DB Schema. I have been able to generate the XSD from the XML. Now i want to use the XSD to generate the DB schema in MySQL or PostgreSQL. Can anyone tell me how can i do this or point to any tools which i can use for this?

Upvotes: 2

Views: 13134

Answers (1)

Siva Charan
Siva Charan

Reputation: 18064

There is a command-line tool called XSD2DB, that generates database from xsd-files, available at sourceforge.

For more info: please refer to this existing question How can I create database tables from XSD files?

Upvotes: 3

Related Questions