Ticket #20005: 20005.diff

File 20005.diff, 574 bytes (added by Tim Graham, 11 years ago)
  • docs/ref/databases.txt

    diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
    index a648ac1..5337519 100644
    a b To run Django's test suite, the user needs these *additional* privileges:  
    672672* CONNECT WITH ADMIN OPTION
    673673* RESOURCE WITH ADMIN OPTION
    674674
     675The Oracle database backend uses the ``SYS.DBMS_LOB`` package, so your schema
     676will require execute permissions on it. For example:
     677
     678.. code-block:: sql
     679
     680    GRANT EXECUTE ON SYS.DBMS_LOB TO SCHEMA_NAME;
     681
    675682Connecting to the database
    676683--------------------------
    677684
Back to Top