Author: ikelly Date: 2007-10-02 10:26:39 -0500 (Tue, 02 Oct 2007) New Revision: 6443
Modified: django/trunk/docs/databases.txt Log: Fixed #5656: Added a note about needing CREATE TRIGGER privileges to run syncdb under Oracle. Thanks, jbronn. Modified: django/trunk/docs/databases.txt =================================================================== --- django/trunk/docs/databases.txt 2007-10-01 03:58:05 UTC (rev 6442) +++ django/trunk/docs/databases.txt 2007-10-02 15:26:39 UTC (rev 6443) @@ -175,9 +175,9 @@ .. _`cx_Oracle`: http://cx-oracle.sourceforge.net/ 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 -run Django's test suite, the user also needs CREATE and DROP DATABASE and -CREATE and DROP TABLESPACE privileges. +user with CREATE TABLE, CREATE SEQUENCE, CREATE PROCEDURE, and CREATE TRIGGER +privileges. To run Django's test suite, the user also needs +CREATE and DROP DATABASE and CREATE and DROP TABLESPACE privileges. Connecting to the Database -------------------------- --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django updates" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/django-updates?hl=en -~----------~----~----~----~------~----~------~--~---
