Opened 16 years ago
Closed 16 years ago
#11031 closed (fixed)
Docs change - django user needs more roles in Oracle database
| Reported by: | Jirka Vejrazka | Owned by: | Matt Boersma |
|---|---|---|---|
| Component: | Documentation | Version: | dev |
| Severity: | Keywords: | oracle documentation | |
| Cc: | Matt Boersma, Erin Kelly | Triage Stage: | Ready for checkin |
| Has patch: | yes | Needs documentation: | no |
| Needs tests: | no | Patch needs improvement: | no |
| Easy pickings: | no | UI/UX: | no |
Description
"Supported databases" page mentions that the Django database user needs the following roles for tests to work:
- CREATE USER
- DROP USER
- CREATE TABLESPACE
- DROP TABLESPACE
Unfortunately, this is not complete. On top of the above, these roles are needed too:
- CONNECT WITH ADMIN OPTION;
- RESOURCE WITH ADMIN OPTION;
Not a big deal, but can save someone a few minutes of troubleshooting the "insufficient privileges" error :)
Attachments (1)
Change History (5)
comment:1 by , 16 years ago
| Version: | 1.0 → SVN |
|---|
comment:2 by , 16 years ago
| Cc: | added |
|---|---|
| Needs documentation: | set |
| Triage Stage: | Unreviewed → Accepted |
by , 16 years ago
| Attachment: | 11031.diff added |
|---|
comment:3 by , 16 years ago
| Has patch: | set |
|---|---|
| Needs documentation: | unset |
| Owner: | changed from to |
| Status: | new → assigned |
| Triage Stage: | Accepted → Ready for checkin |
comment:4 by , 16 years ago
| Resolution: | → fixed |
|---|---|
| Status: | assigned → closed |
Note:
See TracTickets
for help on using tickets.
(In [10805]) Fixed #11031 -- Added doc for some additional roles needed when testing Oracle. Thanks JirkaV and Matt Boersma.