本文介绍了简单的方法将数据从MySql迁移到Derby(JAVADB)?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我必须将数据库从MySql迁移到Derby。但是,我面临一个问题,即不可能仅在JavaDB中创建sql dump和import。有没有简单的方法,工具或我可以使用的东西?还是我应该手工做所有事情?
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
推荐答案
一个好的方法是使用。
这样,您可以从一个数据库导出数据库模式,然后在另一个数据库中创建它。
这是。
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.
这篇关于简单的方法将数据从MySql迁移到Derby(JAVADB)?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!