jdbcimage
is a tool that quickly exports/imports user schema's tables to/from a binary file using JDBC and Kryo. Supports Oracle, MSSQL, MySQL/MariaDB and PostgreSQL databases.
Typically, a zip file is exported from one database to be imported to another database, possibly of a different type and vendor.
The target database must already have schema (tables) created, the data are imported into an existing schema.
The tool ignores missing tables and columns when importing the data.
Quick Start
- Install
jdbcimage
toolBuild the project using maven or
- download the latest release as
jdbcimage${version}.tar.gz
or jdbcimage${version}.zip
, or build it from sources
- mvn install, the same files appear in the
target
directory
tar xvf jdbcimage${version}.tar.gz
or unzip jdbcimage${version}.zip
in a directory of your choice,
- the examples below assume that the directory is in your
PATH
environment variable
- if you are using oracle database, copy its JDBC drivers to the lib directory
- Know how to connect to your database
- url - JDBC connection URL
- user - database user
- password
- Export to a zip file
- jdbcimage export -url=jdbc:mariadb://localhost:3306/qa -user=root -password=root mysql.zip
- jdbcimage export -url=jdbc:postgresql://localhost:5432/inttests?currentSchema=qa -user=postgres -password=postres postgres.zip
- jdbcimage export -url=jdbc:oracle:thin:@localhost:1521:XE -user=system -password=changeit oracle.zip
- jdbcimage export -url=jdbc:sqlserver://localhost:1433;databaseName=XE -user=sa -password=changeit sqlserver.zip
- Import from a zip file
- BEWARE: !!!import deletes data from all tables contained in the imported zip file!!!
- jdbcimage import -url=jdbc:mariadb://localhost:3306/qa -user=root -password=root -ignored_tables=SCHEMAVERSION postgres.zip
- jdbcimage import -url=jdbc:postgresql://localhost:5432/inttests?currentSchema=qa -user=postgres -password=postres -ignored_tables=schemaversion mysql.zip
- jdbcimage -Xmx1024m import -url=jdbc:oracle:thin:@localhost:1521:XE -user=system -password=changeit -ignored_tables=SCHEMAVERSION mysql.zip
- jdbcimage import -url=jdbc:sqlserver://localhost:1433;databaseName=XE -user=sa -password=changeit -ignored_tables=SCHEMAVERSION mysql.zip
- Take a look at table data in a zip file
- jdbcimage dump image.zip
- prints out tables contained in the file, see next item
- jdbcimage dump image.zip#passwd
- prints out metadata and contents of passwd table stored inside image.zip
- jdbcimage dumpHeader image.zip#passwd
- prints out columns, their types and stored row count of passwd table stored inside image.zip
- Perform adhoc queries, inserts or updates (more of them can be separated with lines containing just / )
- jdbcimage exec -url="$DBURL" -user="$DBUSER" -password="$DBPASSWORD" -sql="select * from Users"
- jdbcimage exec -url="$DBURL" -user="$DBUSER" -password="$DBPASSWORD" -sql="update Users set emailLocale='en' where emailLocale is null"
- echo "select * from Users" | jdbcimage exec -url="$DBURL" -user="$DBUSER" -password="$DBPASSWORD"
How it works
The key principles are:
- More threads are used to speed up data export/import, OOTB all (client)
machine processors should be used. See tool_concurrency parameter in the scripts.
- The lowest transaction isolation level is used to make database export/import faster.
- Database metadata are used to export/import all user+schema tables to/from a zip file with entries
per exported/imported table.
- Table and column names are always case-insensitive internally, error is reported when there are more tables
with the same case-insensitive name.
- Concurrent execution requires an extra setup/teardown instructions during data import.
These vary between database types, but they always include disabling/enabling foreign
key constraints, see database classes defined in the main package for more details.
- All triggers are disabled on Oracle before data import and then enabled after data import.
- Oracle sequences, when used, are out of scope and usually have to be reset manually after data import.
- All foreign key constraints are dropped by the tool on Postgress before importing the data, but a table jdbcimage_create_constraints is created with rows that are used to recreate them after data import.
- Identity column sequences are reset to the lowest value after data import on Postgres.
- Streams of data are used for both export and import to have the lowest memory footprint, typically 256M of heap
memory is good enough. BLOB, CLOBs and lengthy columns still might require more heap memory depending on data
and JDBC driver in use, so you also might have to increase java heap memory and/or lower batch size used during
data import. There are parameters in the scripts to do so.
- The result files are binary encoded using Kryo and zipped to be small on file system.
- The scripts accept several properties as arguments supplied as -property=value pairs
- -url=jdbc:mariadb://localhost:3306/qa - JDBC connection string
- -user=user
- -password=password
- -ignored_tables=a,b,c - used to ignore specific tables during import and export
- -tool_concurrency=7 - can be used to limit execution threads
- -tool_builddir=/tmp/a - build directory used during import/export to save/serve table files
- -batch.size=100 - how many rows to wrap into a batch during table import
Initializing the database after import
Once the data is imported, it might be necessary to execute additional SQL commands, this is realized using -Dlisteners= property/argument of the import tool.
- -listeners=Dummy
- only prints out how a listener reacts during import
- more listeners can be specified as a comma separated list, such as -listeners=Dummy,Dummy
- -listeners=OracleRestartGlobalSequence -OracleRestartGlobalSequence.sequenceName=pricefxseq
- this helps to restart database sequence that is used in Oracle to set up identity values in a id column in all tables
- the sequence name is set using -OracleRestartGlobalSequence.sequenceName property
- after all the data is imported, the sequence is dropped and created with the value that is one more than a max value of all imported id values, see the code for more details.
- more can be added using a custom implementation
Missing pieces
- tests, review, better organization of shell scripts, error handling of invalid args