Refers to an ability to interact with multiple databases in a django project
0
votes
1answer
273 views
master slave postgresql with logging and monitoring for a django application
I have a django application running.
The database backend that i use for it is PostGreSql.
Everything is working fine for me.
Now I want to create a master slave replication for my database, such ...
0
votes
1answer
35 views
django sync db to get two apps in two databases
I'm not sure how it works but I need two different models/apps in separated databases. So if I try syncdb --database db1 will get all installed apps into db1. So question is how to get just one app in ...
0
votes
0answers
60 views
“View on site” button in djang-admin for model stored in non-default database
I have two databases in my project:
DATABASES = {
'default': {
'ENGINE': 'django.db.backends.mysql',
'NAME': 'default_db',
...
},
'games_db': {
'ENGINE': ...
0
votes
0answers
41 views
User models conflict while using some shared django apps
I have two django projects which both uses the django.contrib.auth.models.User model.
My two projects have :
Separate databases db1 and db2 (more meaningful names in real world)
Some apps are ...
0
votes
0answers
33 views
Passing ImageField between 2 django projects
I have 2 django projects which have some common tables.
to be able to access one of these tables from one of the projects, I'm using database routing => Problem solved for the database communication.
...
0
votes
1answer
75 views
django is_valid() throws database error
My is_valid() function throws a database error. Am making use of a an alias database(not the default one) and hence am not able to validate my form. My Application table is in database2.
Code:
...
4
votes
1answer
395 views
django multi db routing doesnt work with multiple schemas
I have django running on oracle backend. I need to use two schemas - one for a legacy DB, second one for all django related tables.
So this is my settings.DATABASES:
APPS_DB = 'apps'
DATABASES = {
...
1
vote
1answer
137 views
Django multi-db: Route all writes to multiple databases
I am currently sitting in front of a more specific problem which has to do with fail-over support / redundancy for a specific web site which will be hosted over @ WebFaction. Unfortunately replication ...
1
vote
1answer
728 views
django.db.utils.IntegrityError: (1062, “Duplicate entry '22-add_' for key 'content_type_id'”)
I am using django multiple DB router concepts, having multiple sites with different db's. Base database user will login with all other sub sites.
When i try syncdb in base site its worked ...
0
votes
0answers
157 views
Caught MultipleObjectsReturned while rendering: get() returned more than one DashboardPreferences
I have creatd different django projects, each project contains the django-admin-tools dashboard in admin site. Normally when i logged in admin site means "admin_tools_dashboard_preferences"
table ...
1
vote
2answers
147 views
Django project structure design for development [closed]
I need some design help for my concepts:-
My concept is mother page contain all the links like( forum, advertiser, classified's,etc) different categories. Based on the mother page registration the ...
1
vote
0answers
110 views
Single sign on multiple django project
In our business case there are three projects as follows:
ProjectA
ProjectB
ProjectC
ProjectA will contains the user registration, So if a user registed with ProjectA then he can access the ...
1
vote
1answer
436 views
Django syncdb trying to insert duplicate rows when multiple databases are specified
I'm in the process of configuring my Django app for multiple databases, and as a stop-gap measure, I'm using the following configuration in my settings.py:
READ_DATABASE = {
'ENGINE': ...
0
votes
1answer
155 views
Django: hint for isolating data among set of users
I want to build a Django application in which each "set of users" can see different data, as they were using different DBs. Is there any best practice to achieve this?
E.g.
user A, after logging, ...
0
votes
1answer
100 views
Configure Django to use a certain database only for write queries
We have this open source app we built with Django http://map.ninux.org/ which is used by our wireless community network and is hosted outside of our network with Hetzner in Nurimberg.
We'd like to ...
2
votes
1answer
401 views
Django using multiple databases
I have a model called FieldMap which is used throughout my project. I decided recently that the physical database for this model will exist on another machine (other than the default).
So I now have ...
11
votes
4answers
2k views
Is using multiple databases and South together possible?
My current project is getting extended with geographical stuff, so I'm trying to integrate GeoDjango and import some shapefiles for starters. My setup consists of the following:
MySQL 5.0 as ...
1
vote
1answer
525 views
Django testing of multi-db with automatic routing
Simple problem - I'm using multi-db successfully with automatic routing setup as documented on a legacy db (which are unmanaged). Now I want to test it. I've already set a testrunner to get around ...
1
vote
0answers
150 views
routing a manytomany table to a non-default db in django
I'm using django's multi-db support via database routers to partition certain models to 1 db, and others into another. (Note that whether I "should" be doing that is irrelevant to my question.) I ...
48
votes
5answers
2k views
How to work around lack of support for foreign keys across databases in Django
I know Django does not support foreign keys across multiple databases:
http://docs.djangoproject.com/en/1.3/topics/db/multi-db/#cross-database-relations
But I'm looking for a workaround.
What ...
0
votes
1answer
46 views
Django: Would object creation involving FK still work when the 2 tables involved are in different databases?
I have a Django model:
class Note(models.Model) :
text = models.TextField()
owner = models.ForeignKey(User)
If Note and User are located on different databases, would the
following ...
2
votes
1answer
408 views
Django multiple databases - can't connect to mysql server fallback to sqlite
I have a django applicaiton with multiple databases. The default database is on the local machine. There is also a remote mysql database which is used for some write operations, but it is not always ...
2
votes
3answers
856 views
Django multidb: write to multiple databases
With Django multidb, it's fairly easy to write a router that runs a master/slave infrastructure. But is it possible to write a router that writes to multiple databases? My use case is a collection of ...
1
vote
1answer
315 views
Will Django automatically switch to a slave if Multiple Databases are enabled and the master goes down?
I am a Django n00b and am looking at the "MasterSlaveRouter" example located in the Django docs:
http://docs.djangoproject.com/en/dev/topics/db/multi-db/
In the example, if the "master" were to go ...
0
votes
1answer
174 views
mutli django admins with different db databases in django 1.2 - strange problem
I am using django 1.2 to create a multi site shop. I need multiple admin logins for each shop instance, e.g.
site.com/au/admin
site.com/uk/admin
and so on.
I have a middleware class and a dbrouter ...
2
votes
2answers
303 views
How to change db in django depending on request.get_host()?
I am creating multisites platform. Anybody can make simple site, with my platform. I plan to use django multidb support. One db for one site. And i need to change db settings depending on ...
5
votes
2answers
316 views
Syncing data between devel/live databases in Django
With Django's new multi-db functionality in the development version, I've been trying to work on creating a management command that let's me synchronize the data from the live site down to a developer ...