| title | sidebar_label | description |
|---|---|---|
| BACKUP keyword | BACKUP | BACKUP SQL keyword reference documentation. |
Creates a backup for one, several, or all database tables.
Syntax
Backup directory
Backing up a database or tables requires a backup directory which is set using the cairo.sql.backup.root configuration key in a server.conf file:
1. cairo.sql.backup.root=/Users/UserName/Desktop
The backup directory can be on a disk local to the server, a remote disk or a remote filesystem. QuestDB will enforce that the backup is only written in a location relative to the backup directory. This is a security feature to disallow random file access by QuestDB.
The tables will be written in a directory with today’s date with the default format yyyy-MM-dd (e.g., 2020-04-20). A custom date format can be specified using the cairo.sql.backup.dir.datetime.format configuration key:
1. cairo.sql.backup.dir.datetime.format=yyyy-dd-MM
Given a BACKUP query run on 2021-02-25, the data and metadata files will be written following the db directory structure
1. ├── 2021-02-25
2. │ ├── table1
3. │ │ ├── ...
4. │ ├── table2
5. │ │ ├── ...
6. │ ├── table3
7. │ ...
If a user performs several backups on the same date, each backup will be written a new directory. Subsequent backups on the same date will look as follows:
1. ├── 2021-02-22 'first'
2. ├── 2021-02-22.1 'second'
3. ├── 2021-02-22.2 'third'
4. ├── 2021-02-24 'first new date'
5. ├── 2021-02-24.1 'first new date'
6. │ ...
Examples
1. BACKUP TABLE table1;
1. BACKUP TABLE table1, table2, table3;
1. BACKUP DATABASE;

