Skip to content
Merged
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
8 changes: 8 additions & 0 deletions docs/change-database/rollback-data-changes.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,14 @@ Before using Prior Backup functionality, you must create the `bbdataarchive` sto
GRANT ALL PRIVILEGES ON ALL TABLES IN SCHEMA bbdataarchive TO your_user;
```

1. **If using `SET ROLE`, grant permissions to that role:**

Replace `your_role` with the role used in `SET ROLE`.

```sql
GRANT USAGE, CREATE ON SCHEMA bbdataarchive TO your_role;
```

### Oracle

1. **Create the backup user:**
Expand Down