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: tutorials/migrate-databases-instance/index.mdx
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -58,10 +58,13 @@ This guide consists of two parts, depending on which database Engine your Instan
58
58
```
59
59
apt update && apt upgrade -y
60
60
```
61
-
3. We use `pg_dump` to dump the content of the database to migrate. It is included in the package `postgresql-client-common`. Install it using apt:
61
+
3. We use `pg_dump` to dump the content of the database to migrate. It is included in the package `postgresql-client-16`. Install it using apt:
62
62
```
63
63
apt install postgresql-client-16
64
64
```
65
+
<Messagetype="note">
66
+
Ensure to use the latest version of the `postgresql-client` package when installing it. You can list all available versions of the package using the following command `apt list -a postgresql-client-*`
67
+
</Message>
65
68
4. Dump the content of the originating database into a local SQL file on the Instance:
0 commit comments