Sam, please ask Django usage questions on the django-users mailing
list. This list is for discussion of the development of Django
itself.
But to answer your question, it sounds like you're conflating
"tablespace" with "user schema". What you're wanting to do -- have
the Django user be a user ot
If I connect to oracle as one user (e.g. test_user) but my tables are
in a different tablespace (e.g. test)
I would expect to be able to set my class with:
class Album(models.Model):
str_album_name = models.CharField(max_length = 16, core=True)
class Meta:
db_tablespace="test"
d