我使用了很多工具,但它们无法正常工作,当我开始迁移过程时,它们会生成Null value error
。此外,我尝试使用Sql script
进行迁移,以便在derby表中插入数据,但它们无法正常工作。
基本上我的问题是:我们如何将数据从一个数据库迁移到另一个数据库?
答案 0 :(得分:1)
一种非常简单的方法是Export Mysql Database into a CSV File而不是
使用Derby Import Tool将其导入derby数据库。
您也可以按照此blog中的说明将CSV数据导入Derby:
CALL SYSCS_UTIL.SYSCS_IMPORT_TABLE (null, 'Sampletable', 'Sampledata.csv', ';', null, null, 0);
更新:另请参阅Jad answer以及帖子:mysql dump into derby和MySQL dump .sql script and import to an apache derby。
您可以阅读this文章,其中说明:安装Apache Derby的最新官方发布。
您还可以获得特定版本here。