Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion v19.1/backup.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Table with a [sequence](create-sequence.html) | The sequence it uses; however, t

### Users and privileges

Every backup you create includes `system.users`, which stores your users and their passwords. To restore your users, you must use [this procedure](restore.html#restoring-users-from-system-users-backup).
The `system.users` table stores your users and their passwords. To restore your users, you must first backup the `system.users` table, and then use [this procedure](restore.html#restoring-users-from-system-users-backup).

Restored tables inherit privilege grants from the target database; they do not preserve privilege grants from the backed up table because the restoring cluster may have different users.

Expand Down
2 changes: 1 addition & 1 deletion v19.1/restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ WITH skip_missing_foreign_keys;

### Restoring users from `system.users` backup

Every full backup contains the `system.users` table, which you can use to restore your cluster's usernames and their hashed passwords. However, to restore them, you must restore the `system.users` table into a new database because you cannot drop the existing `system.users` table.
The `system.users` table stores your cluster's usernames and their hashed passwords. To restore them, you must restore the `system.users` table into a new database because you cannot drop the existing `system.users` table.

After it's restored into a new database, you can write the restored `users` table data to the cluster's existing `system.users` table.

Expand Down
2 changes: 1 addition & 1 deletion v19.2/backup.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Table with a [sequence](create-sequence.html) | The sequence it uses; however, t

### Users and privileges

Every backup you create includes `system.users`, which stores your users and their passwords. To restore your users, you must use [this procedure](restore.html#restoring-users-from-system-users-backup).
The `system.users` table stores your users and their passwords. To restore your users, you must first backup the `system.users` table, and then use [this procedure](restore.html#restoring-users-from-system-users-backup).

Restored tables inherit privilege grants from the target database; they do not preserve privilege grants from the backed up table because the restoring cluster may have different users.

Expand Down
2 changes: 1 addition & 1 deletion v19.2/restore.md
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,7 @@ WITH skip_missing_foreign_keys;

### Restoring users from `system.users` backup

Every full backup contains the `system.users` table, which you can use to restore your cluster's usernames and their hashed passwords. However, to restore them, you must restore the `system.users` table into a new database because you cannot drop the existing `system.users` table.
The `system.users` table stores your cluster's usernames and their hashed passwords. To restore them, you must restore the `system.users` table into a new database because you cannot drop the existing `system.users` table.

After it's restored into a new database, you can write the restored `users` table data to the cluster's existing `system.users` table.

Expand Down