diff options
| author | Tim Graham <timograham@gmail.com> | 2013-09-07 13:59:57 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2013-09-07 13:59:57 -0400 |
| commit | a86ecc80a2665378c336aec16274fb1539066d9b (patch) | |
| tree | b831b77067dff6f1dd1287a5c1015ffa5b76f1f4 /docs/ref | |
| parent | a44cbca2a5f1388c6511dad48443877fa660845a (diff) | |
Fixed #20005 -- Documented that Oracle databases need execute permission on SYS.DBMS_LOB.
Thanks jafula for the suggestion.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/databases.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt index 75e2d085e8..0b8c7cdf96 100644 --- a/docs/ref/databases.txt +++ b/docs/ref/databases.txt @@ -679,6 +679,14 @@ To run Django's test suite, the user needs these *additional* privileges: * CONNECT 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 -------------------------- |
