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
Copy file name to clipboardExpand all lines: docs/cookbook.md
+28Lines changed: 28 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -88,6 +88,34 @@ scw instance server list zone=all -o template="{{.ID}} zone={{.Zone}}" | xargs -
88
88
scw rdb backup list -ojson | jq --arg d "$(date -d "7 days ago" --utc --iso-8601=ns)"'.[] | select (.created_at < $d)'
89
89
```
90
90
91
+
### Restore a backup from another Database Instance (even with different version)
92
+
93
+
You can restore a backup from one Database Instance to another, even if they have different PostgreSQL/MySQL versions (e.g., PostgreSQL-15 to PostgreSQL-16). The restore operation works within the same region.
94
+
95
+
```bash
96
+
# Step 1: Create a backup from the source instance
0 commit comments