After this comment to one of my question, I'm thinking if it is better using 1 database with X schemas or viceversa.
My situation: I'm developing a web-app where, when people register, I create (actually) a database (no, its not a social network: everyone must have access to his own data and never see the data of the other user).
That's the way I used for the previus verison of my application (that is still running on mysql): through the plesk api, for every registration, I do:
- Create a database user with limited privileges;
- Create a database that can be accessed just by the previous created user and the superuser (for maintenance)
- Populate the db
Now, I'll need to do the same with postgresql (the project is getting mature and mysql.. dont fulfill all the needes)
I need to have all the databases/schemas backups independent: pg_dump works perfectly in both ways, the same for the users that can be configured to access just 1 schema or 1 database.
So, assuming you are more experienced potsgres users than me, what do you think is the best solution for my situation, and why?
Will there be performance differences using $x db instead of $x schemas? And what solution will be better to maintain in future (reliability)?
Edit: I almost forgot: all of my databases/schemas will allways have the same structure!
Edit2: For the backups issue (using pg_dump), is maybe better using 1 db and many schemas, dumping all the schemas at once: recovering will be quite simple loading the main dump in a dev machine and then dump and restore just the schema needed: there is 1 additional step, but dumping all the schema seem faster then dumpin them one by one.
p.s: sorry if i forgot some 'W' char in the text, my keyboard suffer that button ;)
UPDATE 2012
Well, the application structure and design are changed so much dirung those last two years.
Im still using the 1 db with many schemas approach, but still, I have 1 database for each version of my application:
Db myapp_01
\_ my_customer_foo_schema
\_ my_customer_bar_schema
Db myapp_02
\_ my_customer_foo_schema
\_ my_customer_bar_schema
For backups, im dumping each database regularly, then moving the backups on the dev server.
Im also using the PITR/WAL backup but, as I said before, its not likely i'll have to restore all database at once.. so it will probably be dismissed this year (in my situation is not the best approach).
The 1-db-many-schema approach worked very well for me since now, even if the app structure is totally changed:
i almost forgot: all of my databases/schemas will allways have the same structure!
...now, every schema has its own structure that change dinamycally reacting to users data flow.