DB2 to MySQL migration moves IBM DB2 data into a MySQL-family database, but DB2-specific schema and SQL behavior still need target decisions.
The row copy is only one part of the job. Generated keys, sequences,
large object columns, numeric precision, character encodings, and SQL
PL routines should be separated into table-migration and code-conversion
work before MySQL becomes the write target.
What DBConvert does on this path:
handles the DB2-to-MySQL move as a repeatable desktop workflow:
-
Connects to IBM DB2 and reads selected schemas, tables, fields, indexes, and data.
-
Maps DB2 field types into MySQL-compatible columns and lets the mapping be reviewed before transfer.
-
Writes to MySQL, MariaDB, Percona Server, Amazon RDS / Aurora MySQL, Azure Database for MySQL, or Google Cloud SQL for MySQL.
What it does not do:
DBConvert does not rewrite DB2 applications, COBOL jobs, embedded SQL,
or complex SQL PL business logic into a MySQL application layer.
Treat procedures, triggers, functions, and application SQL as a
code-conversion track alongside the schema and data migration.