Skip to content

Commit

Permalink
[1.5.x] Fixed #20005 -- Documented that Oracle databases need execute…
Browse files Browse the repository at this point in the history
… permission on SYS.DBMS_LOB.

Thanks jafula for the suggestion.

Backport of a86ecc8 from master
  • Loading branch information
timgraham committed Sep 7, 2013
1 parent 3758762 commit 9d3a66a
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions docs/ref/databases.txt
Expand Up @@ -620,6 +620,14 @@ To run Django's test suite, the user needs these *additional* privileges:
* CONNECT WITH ADMIN OPTION * CONNECT WITH ADMIN OPTION
* RESOURCE WITH ADMIN OPTION * RESOURCE WITH ADMIN OPTION


The Oracle database backend uses the ``SYS.DBMS_LOB`` package, so your user
will require execute permissions on it. It's normally accessible to all users
by default, but in case it is not, you'll need to grant permissions like so:

.. code-block:: sql

GRANT EXECUTE ON SYS.DBMS_LOB TO user;

Connecting to the database Connecting to the database
-------------------------- --------------------------


Expand Down

0 comments on commit 9d3a66a

Please sign in to comment.