How to access tables from a different schema in oracle 11g using django?
问题 I have a user named mi_abc in oracle 11g. The user do not have any table in the database but has access to all the tables in another schema sch_abc. When I run a normal select query from sqldeveloper on the sch_abc schema from mi_abc, it works perfectly fine, but when I use django, I am always getting the error:- django.db.utils.DatabaseError: ORA-00942: table or view does not exist I tried to set the db_table = sch_abc.tableName and also set db_table = tableName but both gives me the same