balteo
balteo

Reputation: 24709

Open source tool to generate generic DDL scripts

I have to generate generic DDL scripts from a running MySQL database (source) that will be run on a HSQLDB database (target) and I am therefore looking for an open source tool that could generate generic DDL scripts (or at least as generic as possible).

Upvotes: 1

Views: 519

Answers (1)

palacsint
palacsint

Reputation: 28895

I'd check first the --no-data and --compatible=name options of mysqldump.

Upvotes: 1

Related Questions