Database Dumps: SQL, CSV & JSON Exports
Relational schemas, table serialization, and zero-downtime data migrations.
Your files are processed entirely in your web browser using HTML5 Canvas and WebAssembly. Zero data ever leaves your device.
Skip upload and download queues. Conversions happen locally at full machine hardware speed without server limits.
Compliant with official ISO, W3C, and IETF specifications to guarantee output compatibility across modern operating systems.
Format Comparison & Technical Specifications
| Output Format | MIME Type | Specification | Type |
|---|---|---|---|
| SQLITE Database | application/vnd.sqlite3 | SQLITE-FILE-SPEC | Embedded Relational Database |
| SQL Dump | text/plain | ANSI-SQL-SPEC | Structured Query Language Dump |
| CSV DB Table | text/csv | RFC-4180-CSV | Tabular Database Export |
| JSON Data Export | application/json | RFC-4180-CSV | Structured JSON Array Dump |
| DB Database Container | application/vnd.sqlite3 | SQLITE-FILE-SPEC | Generic Relational DB File |
Technical Specifications & Codec Breakdown
SQL Dumps vs. Flat CSV Exports
A SQL dump contains both table schemas (CREATE TABLE) and data rows (INSERT INTO), recreating relationships, indexes, and column types. CSV exports only dump raw rows, requiring manual schema definition upon import.
Migrating Databases Across Engines
Different SQL database engines (PostgreSQL, MySQL, SQLite) use slightly different syntax for data types and auto-increment keys. Converting relational tables to structured JSON or CSV provides a clean intermediate format for cross-database transfers.
0 bytes uploaded to external servers. All processing occurred locally in your browser sandbox.