Skip to content

Commit f611346

Browse files
Adding a note to perform mitigation steps for all databases included in migration
1 parent fb58eb1 commit f611346

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

articles/postgresql/migrate/migration-service/concepts-user-roles-migration-service.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,6 @@ GROUP BY
9898
The output of the above query will show the list of privileges granted to roles on the impacted tables and views.
9999

100100
For example:
101-
102101
| Privileges | Relation name | Grantee |
103102
| :--- | :--- | :--- |
104103
| SELECT | pg_authid | adminuser1
@@ -113,6 +112,8 @@ REVOKE SELECT ON pg_authid FROM adminuser1;
113112
REVOKE SELECT ON pg_shadow FROM adminuser2;
114113
REVOKE UPDATE ON pg_shadow FROM adminuser2;
115114
```
115+
> [!NOTE]
116+
> Make sure you perform the above steps for all the databases included in the migration to avoid any permission-related issues during the migration..
116117
117118
After completing these steps, you can proceed to initiate a new migration from the single server to the flexible server using the migration service. You should not encounter permission-related issues during this process.
118119

0 commit comments

Comments
 (0)