I'm trying to export only the database.
I want:
- only one SQL file
- compressed
My exported database .sql size is 215 MB
If I set "Size for split SQL dump files" to 0MB and try these configs, I get:
- Main site database only (SQL File) + JPA format:
- result: one sql file 215MB
- Main site database only (SQL FIle) + ZIP format:
- result: one UNCOMPRESSED 215MB zip file with one sql file
- All configured databases (arquive file) + JPA format:
- result: one UNCOMPRESSED 215MB JPA file with one sql file
The only way I found to export a COMPRESSED file is:
- setting "Size for split SQL dump files" to 0.5MB + All configured databases (arquive file) + JPA format
- result: one COMPRESSED JPA 20MB file with hundreds of sql## files...
Is'nt there an option to export a compressed sql file?
zip, gzip, jpa, I dont mind... just a single SQL file inside a compressed archive.
Thanks.