Hi, I don't know if this is a missing feature. But after reading the code of django.db.backends.oracle.* I think that there is a feature missing - at least in the Oracle driver - you can't add a generic table prefix.
I have a production Oracle database where a proprietary software does read/write operations. I created a Django ORM on top of it using 'inspectdb', but want to make sure that Django never-ever writes anything into that DB, not even on purpose (user accidentally clicks on "save" in admin UI). So I created a readonly user in Oracle who has readonly (SELECT) access to that database: CREATE USER testreadonly IDENTIFIED BY testreadonly DEFAULT TABLESPACE PROD_DB TEMPORARY TABLESPACE TEMPTBS2 QUOTA UNLIMITED ON PROD_DB; and gave him rights: GRANT connect, resource to testreadonly; ## those are the two roles for access here GRANT SELECT ANY TABLE TO testreadonly; So far, so good. The problem is that, in SQL, as the "testreadonly" user's primary schema is not PROD_DB, I have to prefix every table name like: SELECT max(id) FROM PROD_DB.people There is a more or less unanswered stackexchange question too: https://stackoverflow.com/questions/49056244/prefix-all-table-names-django-1-11 What would be a workaround is to add the prefix to the metaclass.table_name attribute of each model. Which sounds extremely un-pythonic to mee (DRY?) Ideally, I wished to have a "TABLESPACE" config field within the DATABASE entry which reflects the TBLSPACE setting which is provided by Django , but only within the DATABASES["TEST"] dict, or the "db_tablespace" option as attribute within a Model. Which is also DRY. Is there a chance that this could be worth an implementation? Or did I get something completely wrong and it's just my missing configuration? thanks, Christian -- Dr. Christian González https://nerdocs.at -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-developers+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/860c153a-2efc-86fb-4649-6ce3752f6e5b%40nerdocs.at.
pEpkey.asc
Description: application/pgp-keys