Maree-DB speaks MySQL, PostgreSQL, and Redis natively. Change your connection string. Your application doesn't know the difference. It just works.
Zero-Migration Switch
No driver changes. No ORM changes. No code changes.
No driver changes. No ORM changes. No code changes.
Bring Your Data
Already have data in another database? Use the tools you already know.
Oracle Escape
We analyse your PL/SQL codebase. No obligation. Free.
Test the migration without touching production. Validate everything.
maree-db-server migrate --source oracle://host/db
Validate, run report, cutover. Rollback available if needed.
| Oracle | Maree-DB SQL |
|---|---|
| PL/SQL packages | Stored procedures (auto-translated) |
| ROWNUM | LIMIT / FETCH FIRST |
| SYSDATE | CURRENT_TIMESTAMP |
| NVL() | COALESCE() |
| DECODE() | CASE WHEN |
| CONNECT BY | Recursive CTE (WITH RECURSIVE) |
| VARCHAR2 | VARCHAR |
| NUMBER(p,s) | DECIMAL(p,s) |
| SEQUENCES | SEQUENCE / IDENTITY |
95% of PL/SQL translates automatically. Complex packages reviewed manually during the free assessment.
MongoDB Escape
MongoDB's BSON documents become JSONB columns in Maree-DB - with GIN indexing, JSONPath queries, and full SQL JOIN support. You get real ACID transactions, real schema validation, and real foreign keys. Plus every other data model in the same binary.
| MongoDB | Maree-DB |
|---|---|
| BSON documents | JSONB columns (binary JSON) |
| $lookup | SQL JOIN (faster, ACID) |
| $match | WHERE clause |
| $group | GROUP BY |
| db.collection.find() | SELECT * FROM collection |
| ObjectId | UUID or BIGINT |
| Schemaless | Optional schema validation |
Consolidation
Running MySQL, Redis, MongoDB, and InfluxDB? Consolidate all four into one Maree-DB instance.
Zero Downtime
Can't afford any downtime? Use live migration with change-data capture.
Maree-DB connects to your existing database and begins replicating all data.
Historical data is copied. Ongoing changes are streamed in real-time.
Watch the replication lag drop to near-zero milliseconds.
Update your connection string. Your app reconnects. No data loss. No downtime.
Migration Estimator