Fixed #5656: Added a note about needing CREATE TRIGGER privileges
to run syncdb under Oracle. Thanks, jbronn. git-svn-id: http://code.djangoproject.com/svn/django/trunk@6443 bcc190cf-cafb-0310-a4f2-bffc1f526a37
This commit is contained in:
parent
d95c0fd017
commit
dad9bae585
|
@ -175,9 +175,9 @@ operators. You will also need the `cx_Oracle`_ driver, version 4.3.1 or newer.
|
||||||
.. _`cx_Oracle`: http://cx-oracle.sourceforge.net/
|
.. _`cx_Oracle`: http://cx-oracle.sourceforge.net/
|
||||||
|
|
||||||
To run ``python manage.py syncdb``, you'll need to create an Oracle database
|
To run ``python manage.py syncdb``, you'll need to create an Oracle database
|
||||||
user with CREATE TABLE, CREATE SEQUENCE, and CREATE PROCEDURE privileges. To
|
user with CREATE TABLE, CREATE SEQUENCE, CREATE PROCEDURE, and CREATE TRIGGER
|
||||||
run Django's test suite, the user also needs CREATE and DROP DATABASE and
|
privileges. To run Django's test suite, the user also needs
|
||||||
CREATE and DROP TABLESPACE privileges.
|
CREATE and DROP DATABASE and CREATE and DROP TABLESPACE privileges.
|
||||||
|
|
||||||
Connecting to the Database
|
Connecting to the Database
|
||||||
--------------------------
|
--------------------------
|
||||||
|
|
Loading…
Reference in New Issue