Note. I am not going to realize this, but rather a thought experiment.
Suppose I had several services available through a web interface. At least two of them require user registration and some data in the database. Single registration will provide access to all services. Like Google (GMail, Google Docs, etc.).
Will all of these services associated with registered users be in the same database, possibly with table prefixes, what service were they for?
Or does each service have its own database? The only plus I see in this is that it will make the table names clean. At any time when some kind of user interaction is required, interaction with at least two different databases will be required, which, without the need, would complicate sql queries.
Would this suggest that the “big boys” use only one database and load it with many different (and possibly completely unrelated) tables?
source
share