in reply to Twin interfaces, and one and a half databases to a project
Perhaps he doesn't understand that most database support the notion of separate logical databases within a physical database (sort of like namespaces). Each database contains a distinct schema, and each database has its own access controls (i.e., grants on a table in one database are kept separate from grants to tables in other databases).
It's easy to set up application to use multiple logical databases. Database users with the correct grants can do queries against tables in separate logical databases (e.g., JOIN queries), while another user might be restricted to seeing only tables in one database. This would work for your application, unless your client has some other concerns that haven't been articulated.
This begs the question, though, of whether it is safe to keep a database on the same box as the web server. For secure applications, the answer is a resounding NO. IIS is notoriously insecure. Even Apache is subject to an occassional exploit. I rant further on this in this thread on storing credit card numbers in databases.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Twin interfaces, and one and a half databases to a project
by JPaul (Hermit) on Aug 15, 2002 at 04:56 UTC | |
by dws (Chancellor) on Aug 15, 2002 at 05:59 UTC | |
by Abigail-II (Bishop) on Aug 15, 2002 at 10:16 UTC | |
by demerphq (Chancellor) on Aug 15, 2002 at 16:59 UTC | |
by Abigail-II (Bishop) on Aug 15, 2002 at 17:10 UTC |