summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2013-09-07 13:59:57 -0400
committerTim Graham <timograham@gmail.com>2013-09-07 14:01:10 -0400
commit9d3a66aa9fd33f68fc22fc1d86b7aaf382018f57 (patch)
tree0077ab5ecb656f8c4f52241d59eb7dbf83c161fa
parent37587624bf79490e97da1bd04547cdce8b77b9fb (diff)
[1.5.x] Fixed #20005 -- Documented that Oracle databases need execute permission on SYS.DBMS_LOB.
Thanks jafula for the suggestion. Backport of a86ecc80a2 from master
-rw-r--r--docs/ref/databases.txt8
1 files changed, 8 insertions, 0 deletions
diff --git a/docs/ref/databases.txt b/docs/ref/databases.txt
index 56844f381c..f4656adf96 100644
--- a/docs/ref/databases.txt
+++ b/docs/ref/databases.txt
@@ -620,6 +620,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
--------------------------