Creating a SQL Schema from XML

We use the Oracle 11 database and the java development environment (using Eclipse) and would like to migrate several xml schemas to SQL schemas.

We looked at ax xsd, but we really need something that we can run from ant / Eclipse without installing SQL Server.

Hello,

Andy

+2
source share
2 answers

Another option is to use JAXB to generate Java objects and use Hibernate to create a schema based on a class hierarchy.

That being said, it depends on what you are trying to do, and I think that such decisions are likely to be fragile and difficult to maintain.

0
source

XML? ? XSLT .

0

All Articles