On Mon, Aug 17, 2009 at 8:19 AM, kmpm<[email protected]> wrote: > > I'm working on issue http://code.djangoproject.com/ticket/6148 and > have some questions. > > If a db_schema is defined, should it be created automatically or > should the user be required to set this up in the same fashion as he > is required to set up the database. > > For postgres it might not be any trouble to create the schema within > the pre existing database but the MySQL implementation of schemas is > to create a additional database for the schema (CREATE SCHEMA is a > alias of CREATE DATABASE). This seems a bit to intrusive for my taste > and that's why I'm asking.
Also in Oracle, creating a schema means creating a user, which has security implications. My opinion is that we should not be actively meddling with schemas, just as we do not with databases, users, or tablespaces. Ian --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/django-developers?hl=en -~----------~----~----~----~------~----~------~--~---
