It seems like you should have two instances of Django running. Each one will be listening on a different port, and run a different settings.py file.
In short, copy your settings.py file, and change the copy to use the alternate database. Then, run two copies of Django, like this (may vary based on how your server is set up): ./manage.py runfcgi host=127.0.0.1 port=8100 --settings=myproject.settings ./manage.py runfcgi host=127.0.0.1 port=8200 --settings=myproject.yyyy_settings Of course, your Web server (Apache, nginx, whatever) needs to have another entry added for the new port number and url. Shawn -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@googlegroups.com. To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.