Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

mysql dump into derby

Tags:

mysql

dump

derby

I'm using derby for development in eclipse. Is it possible to dump a table from MySQL and use it for derby in some way? I know that ddl & dml are different for both dbms but I'm looking for a way, other than dump/export, that would be appropriate.

like image 790
lisak Avatar asked Oct 15 '22 00:10

lisak


2 Answers

There are two options I can find; if I understand your question correctly, I think at least one will cover what you are looking for.

If your focus is the data (or a subset thereof) from a single table, use ij as indicated in the Derby tools documentation (see "Using the bulk import and export procedures"). The data can be extracted from MySQL using intrinsic formatting commands in the required format, which appears to be pretty standard CSV (this would require that you have an appropriate table already existing in your Derby database).

Here's an example from the MySQL forums:

SELECT a,b,a+b INTO OUTFILE '/tmp/result.text'
FIELDS TERMINATED BY ',' OPTIONALLY ENCLOSED BY '"'
LINES TERMINATED BY '\n'
FROM test_table; 

If you want to import everything, Apache DdlUtils will allow the transfer of an entire schema from MySQL to Derby. This would not require the repeated table definition in Derby, as it would come across as part of the import/export process with DdlUtils.

like image 66
mlschechter Avatar answered Oct 19 '22 03:10

mlschechter


Unless you need to automate the process, the "DBCopy Plugin for SQuirreL SQL Client" tool might work for you. There are probably other tools, but that's the one I know (however never used myself).

If you do need to automate the process, and if you don't care so much about the DDL, then I would probably use CSV.

like image 42
Thomas Mueller Avatar answered Oct 19 '22 01:10

Thomas Mueller