|
My
first question is are the three different databases actually on different
machines, or are they just different datasources on one machine? My second
question is have you thought about what security holes you could be creating by
using the same login for 3 different applications? My third thing is that from
what I can read into the tables you're describing, your select statement should
be something like this
SELECT orgName
FROM organizations
WHERE memberID = #session.memberID#
Other
than all of that, what you're suggesting should work except for the fact that
each of your fk constraints in your child tables will not actually be
constraints since they will not be able to be pointed at the corresponding table
since it is in another database. You will want to place a unique constraint and
an index on that column from what I can read into this. It could possibly slow
down your database, but I'm assuming that you're not going to be logging in and
out at a horribly fast rate for it to matter.
Bruce Dunwiddie
|
- [KCFusion] system intergration Adaryl Wakefield
- Re: [KCFusion] system intergration Bruce Dunwiddie
- Re: [KCFusion] system intergration Adaryl Wakefield
- RE: [KCFusion] system intergration Templin, Luke
- Re: [KCFusion] system intergration Adaryl Wakefield
- RE: [KCFusion] system intergration Matt Jones
- RE: [KCFusion] system intergration Templin, Luke
- RE: [KCFusion] system intergration hartwichr
