How to convert Apache Derby database to MySQL

I would like to convert an existing Derby database to MySQL.

+3
source share
1 answer

Try DBCopy Plugin for SQuirreL SQL Client if you only need to convert the database once. There are other tools that may work. I need to convert regularly, then I would use CSV export / import (for data).

+5
source

Source: https://habr.com/ru/post/1765482/


All Articles