db2sql is a Python package providing a command-line utility to move any supported source database (SQLite, MySQL, MSSQL, PostgreSQL, Oracle) into a target dialect — PostgreSQL (default) or Microsoft SQL Server — selectable via --target.
Two output modes are supported:
db2sql dump (the default command) — write a SQL file (or stream to stdout) that can later be replayed with psql -f or sqlcmd -i.
db2sql migrate — open a live connection to the target database and apply the same DDL and data directly, without an intermediate file. The DDL produced is byte-identical to dump mode: a single SqlEmitter is the source of truth in both paths.
Two helper commands round out the CLI: db2sql init generates a configuration file through an interactive wizard, and db2sql validate checks one (optionally previewing the export plan) before a long run.
Running db2sql with dump options but no command is a shorthand for db2sql dump — both forms are supported and produce identical output.
Installation
db2sql is compatible with Python 3.9+.
Use pip to install the latest stable version. Note the distribution name on PyPI is python-db2sql while the importable Python package is db2sql (same convention as python-dateutil):
$ pip install --upgrade python-db2sql
After installation, the CLI is available as db2sql and the importable module as db2sql:
from db2sql.interface.cli import main
The current development version is available on GitHub.com and can be installed directly from the git repository:
$ pip install git+https://github.com/sismicfr/python-db2sql.git
Live migration mode
Stream a source database directly into a live target — same DDL as the file dump, but without the round-trip through a .sql file:
# SQLite source → live Postgres target
$ db2sql migrate --driver sqlite --dbname mydb.sqlite \
--target-host localhost --target-port 5432 \
--target-dbname mytarget --target-user postgres --target-password s3cr3t
The migrate subcommand uses the SqlEmitter of the chosen --target to produce DDL and a dialect-specific TargetWriter (e.g. psycopg2.copy for Postgres, batched executemany for MSSQL) to bulk-load rows. See the CLI reference for all --target-* flags and migration options (--on-existing, --transaction-mode, --batch-size).
Replayable dumps
By default, the dump emits CREATE TABLE statements only — replaying the file against a database that already contains the target tables fails. Pass --on-existing drop (or set dump.on_existing: drop in the config) to prepend a DROP TABLE IF EXISTS for every table in reverse-dependency order:
$ db2sql dump --driver sqlite --dbname mydb.sqlite --on-existing drop -f dump.sql
Pass --on-existing truncate to produce a data-only script: no DDL is emitted, the dump just TRUNCATEs every managed table and reloads its rows. Use it to refresh data into a pre-existing schema:
$ db2sql dump --driver sqlite --dbname mydb.sqlite --on-existing truncate -f refresh.sql
Connecting with a DSN
The discrete -H / -P / -d / -u / -p flags cover the common case. When you need something they cannot express — a TLS mode, a charset, an Oracle service_name, an alternative DBAPI — pass a full SQLAlchemy URL instead:
# prefer the environment: a DSN on the command line is visible in `ps`
$ export DB2SQL_SOURCE_DSN='postgresql+psycopg2://app:s3cr3t@pg.example.com:5432/mydb?sslmode=require'
$ db2sql dump --driver postgres -f dump.sql
# and its mirror for a live migration
$ export DB2SQL_TARGET_DSN='postgresql+psycopg2://svc@target.internal:5432/stage'
$ db2sql migrate --driver mysql -H mysql.example.com -d mydb -u app -W
A DSN replaces the connection rather than merging with it, and the URL dialect must match --driver / --target. Passing a DSN together with -H / -d / … on the same command line — or declaring both in the same config file — is rejected as a contradiction; a DSN overriding a connection that came from a config file or the environment is allowed, and warns about what it dropped. Passwords are always redacted in log output. See the CLI reference for the full semantics.
Validating a configuration
Before launching a long dump, check the configuration file and (optionally) preview the export plan without producing any SQL:
# syntax check + plugin name resolution (no DB connection)
$ db2sql validate db2sql.yml
# connect to the source and print the plan, no SQL emitted
$ db2sql validate db2sql.yml --dry-run
# same plan plus one SELECT COUNT(*) per kept table
$ db2sql validate db2sql.yml --dry-run --with-counts
See the CLI reference for full details, exit codes, and the lookup order when the positional CONFIG_FILE is omitted.
Extensibility
Beyond the built-in drivers (SQLite, MySQL, MSSQL, PostgreSQL, Oracle) and targets (PostgreSQL, MSSQL), db2sql discovers third-party plugins through three entry-point groups:
db2sql.readers — register a new source driver (--driver)
db2sql.emitters — register a new target dialect for the file dump (--target)
db2sql.writers — register a new target writer for live migration (used by db2sql migrate)
A step-by-step authoring guide lives in the Plugins section of the documentation, and three runnable example projects ship under examples/:
examples/csv-producer — a custom reader (a directory of CSVs)
examples/sqlite-emitter — a custom emitter (SQLite-flavoured SQL)
examples/yaml-to-markdown — a single package that ships both a reader and an emitter
Each example is a standalone Python distribution: cd examples/<name> && pip install -e . makes its driver / target immediately usable from the db2sql CLI.
Bug reports
Please report bugs and feature requests at https://github.com/sismicfr/python-db2sql/issues.
Documentation
The full documentation for CLI and API is available on readthedocs.
Build the docs
We use tox to manage our environment and build the documentation:
pip install tox tox -e docs
Contributing
For guidelines for contributing to db2sql, refer to CONTRIBUTING.rst.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file python_db2sql-2.0.0.tar.gz.
File metadata
- Download URL: python_db2sql-2.0.0.tar.gz
- Upload date:
- Size: 68.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
49fecb3164ef03803faa223f79ddda95ae049e279326a8e3409d561dec3a026b
|
|
| MD5 |
d1b43062f3704e8a4a04ae590233209c
|
|
| BLAKE2b-256 |
1ff35f56b7dbd7478ce0e6e4170c26713cacb110ed57c4b34a1453cf8ed694ce
|
Provenance
The following attestation bundles were made for python_db2sql-2.0.0.tar.gz:
Publisher:
release.yml on sismicfr/python-db2sql
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
python_db2sql-2.0.0.tar.gz -
Subject digest:
49fecb3164ef03803faa223f79ddda95ae049e279326a8e3409d561dec3a026b - Sigstore transparency entry: 2529427351
- Sigstore integration time:
-
Permalink:
sismicfr/python-db2sql@93548d70f173626b4e663c619a64913d9403e21f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sismicfr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@93548d70f173626b4e663c619a64913d9403e21f -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file python_db2sql-2.0.0-py3-none-any.whl.
File metadata
- Download URL: python_db2sql-2.0.0-py3-none-any.whl
- Upload date:
- Size: 97.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
47cafa0880eb637ad86d271d09b3ee3d58a6001c876dc701fd073296bcb9e25c
|
|
| MD5 |
cbe99b1392c7341f95e379dced6bccf8
|
|
| BLAKE2b-256 |
7a52deb3c9f20d7f6522d8533cdcfa5382f48470935b32b5141db45ee65a54bc
|
Provenance
The following attestation bundles were made for python_db2sql-2.0.0-py3-none-any.whl:
Publisher:
release.yml on sismicfr/python-db2sql
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
python_db2sql-2.0.0-py3-none-any.whl -
Subject digest:
47cafa0880eb637ad86d271d09b3ee3d58a6001c876dc701fd073296bcb9e25c - Sigstore transparency entry: 2529427416
- Sigstore integration time:
-
Permalink:
sismicfr/python-db2sql@93548d70f173626b4e663c619a64913d9403e21f -
Branch / Tag:
refs/heads/main - Owner: https://github.com/sismicfr
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@93548d70f173626b4e663c619a64913d9403e21f -
Trigger Event:
workflow_dispatch
-
Statement type: