You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FROM S3('https://storage.googleapis.com/test_gcs_backups/<uuid>', 'key', 'secret')
155
156
```
157
+
158
+
# Granular Backups
159
+
160
+
The `BACKUP` command also works with granular backups of specific tables. Example AWS commands for backing up a specific table are listed below. GCP and Azure commands are similar to the ones explained above, except that they need to be customized to backup specific tables.
161
+
162
+
### Take a Granular Backup
163
+
**Full Backup**
164
+
```sql
165
+
BACKUP TABLE data TO S3('https://testchbackups.s3.amazonaws.com/backups/<uuid>', '<key id>', '<key
166
+
secret>')
167
+
```
168
+
169
+
**Incremental Backup**
170
+
```sql
171
+
BACKUP TABLE data TO S3('https://testchbackups.s3.amazonaws.com/backups/my_incremental/', '<key id>', '<key
0 commit comments