3

I have to migrate my database from MySql to Derby. However, I am facing a problem, that it is not possible just to create sql dump and import in JavaDB. Is there an easy way, a tool or something that I can use? or should I do everything by hand?

Danke

Jad
  • 479
  • 2
  • 10
  • 23
TNeykov
  • 73
  • 2
  • 8

1 Answers1

1

One good way, is to use DdlUtils. with this, you can export a database schema from one database and create it in another. This is the MySQL page.

Jad
  • 479
  • 2
  • 10
  • 23