#20707 closed Bug (fixed)
manage.py test failed with error ORA-01950 when use Oracle 12c
Reported by: | Owned by: | nobody | |
---|---|---|---|
Component: | Database layer (models, ORM) | Version: | dev |
Severity: | Normal | Keywords: | oracle |
Cc: | Triage Stage: | Accepted | |
Has patch: | yes | Needs documentation: | no |
Needs tests: | no | Patch needs improvement: | no |
Easy pickings: | no | UI/UX: | no |
Description
When using new release Oracle 12c creating test user broken with error DatabaseError: ORA-01950: no privileges on tablespace 'TEST_V8'
It happens because UNLIMITED TABLESPACE is no longer included in RESOURCE role. Quota must be explicitly set by ALTER USER test_user QUOTA UNLIMITED ON test_tablespace
after creating test user but before load any data.
Change History (6)
comment:1 by , 11 years ago
Has patch: | set |
---|---|
Keywords: | oracle added |
Triage Stage: | Unreviewed → Accepted |
Version: | → master |
comment:2 by , 11 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
comment:6 by , 11 years ago
Just to set the record straight -- The commits mentioned in the above comments are all made from PR 1336 mentioned above.
Thanks nsadovskiy for report and fix.
Note:
See TracTickets
for help on using tickets.
https://github.com/django/django/pull/1333
https://github.com/django/django/pull/1336