How to export CREATE TABLE statements from every major database GUI tool — so you can paste them into SchemaLens and diff instantly.
Works with PostgreSQL, MySQL, SQLite, SQL Server, Oracle, and 20+ other databases.
Use Compare With (Ctrl+D) on two DDL files inside DataGrip, then paste both into SchemaLens for a semantic diff that understands column renames and type changes.
Free universal database tool. Supports all major databases via JDBC.
For PostgreSQL, use Tools → Backup with --schema-only to get a clean dump without data. Then paste the SQL into SchemaLens.
Modern, native database GUI for macOS, Windows, and Linux.
.sql file.TablePlus remembers your last export settings. After the first export, press Cmd+Shift+E / Ctrl+Shift+E to instantly re-export with the same options — perfect for weekly schema snapshots.
The official management tool for PostgreSQL.
pg_dump --schema-only --no-owner --no-privileges mydb > schema.sqlschema.sql into SchemaLens.Use pg_dump --schema-only --no-owner --no-privileges for the cleanest output. SchemaLens works best when the SQL doesn't contain ownership or privilege statements that vary between environments.
Official visual tool for MySQL database architects, developers, and DBAs.
mysqldump --no-data --skip-comments mydb > schema.sqlAdd --skip-comments to remove auto-generated timestamps from the dump. This prevents SchemaLens from flagging comment differences as schema changes.
Microsoft's integrated environment for managing SQL Server infrastructure.
In the Advanced scripting options, set Script Extended Properties to False and Script Logins to False for cleaner diffs that focus on schema changes, not environment metadata.
High quality, visual, open source tool to create, design, and edit SQLite database files.
.sql file, copy, and paste into SchemaLens.sqlite3 mydb.db ".schema" > schema.sqlSQLite's .schema command includes CREATE INDEX statements. SchemaLens will diff both tables and indexes, giving you a complete picture of schema changes.
One-liners for every database. No GUI required.
Paste your exported CREATE TABLE statements into SchemaLens and see changes instantly — with breaking-change detection and migration script generation.
Compare Schemas Free →