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:
|
672 | 672 | * CONNECT WITH ADMIN OPTION |
673 | 673 | * RESOURCE WITH ADMIN OPTION |
674 | 674 | |
| 675 | The Oracle database backend uses the ``SYS.DBMS_LOB`` package, so your schema |
| 676 | will require execute permissions on it. For example: |
| 677 | |
| 678 | .. code-block:: sql |
| 679 | |
| 680 | GRANT EXECUTE ON SYS.DBMS_LOB TO SCHEMA_NAME; |
| 681 | |
675 | 682 | Connecting to the database |
676 | 683 | -------------------------- |
677 | 684 | |