Quick Start¶
1. Point at a cluster¶
2. Export schema + data¶
Output lands under crdb_dump_output/mydb/:
mydb_schema.sql— full DDL (dependency-ordered, withCREATE SCHEMAfor non-publicschemas)mydb.<schema>.<table>_NNN.csv— chunked datamydb.<schema>.<table>.manifest.json— checksummed chunk manifest
3. Restore¶
crdb-dump load --db=mydb \
--schema=crdb_dump_output/mydb/mydb_schema.sql \
--data-dir=crdb_dump_output/mydb \
--validate-csv
4. Verify checksums¶
Next: read the Guides for the full feature set, or the CLI Reference for every option.