As far as my understanding goes, it's not possible to enforce referential activity (and cascade updates) between tables that come from two different database (even if the tables are all in split back-ends) Is this right?
Is it even necessary to enforce referential activity if your tables are set up correctly (IE they are all normalized)? I ask because if the front end is using (let's say) combo boxes that get the row sources from the department table and the control source stores the foreign key (IE the departmentID) in the employee table, why does it matter if referential integrity is enforced?
IF IT DOES MATTER then I absolutely must find a way to enforce referential integrity between tables that come from different database files.. there must be a way...
LASTLY, would a fix be to keep all back-end tables in one single database file? Basically every database uses the Employee table and the Department table.. but the rest of the tables are generally related to only the other tables that are used in a particular front-end database.