Where to define relationships?

Dmitry Perets

Registered User.
Local time
Today, 07:27
Joined
Jul 20, 2006
Messages
21
Hello,

My Access application consists of two MDB files: the application file and the database file. The application file has links to tables from the database file.
Now, I want to define relationships to optimize my database performance. Where should I define them? In the database file? In the application file? Both?

Thank you!
 
relationships must be set up in the back end (where the tables are) then when you link your tables a snapshot of the relationships is loaded into the front end with limited functionality. i.e. you couldn't specify cascade delete for instance.
 
relationships must be set up in the back end (where the tables are) then when you link your tables a snapshot of the relationships is loaded into the front end with limited functionality. i.e. you couldn't specify cascade delete for instance.

Hm... And what happens when I define them in the front end? Do I get the cascade delete then?
 
You can not actually create and save a relationship on a linked table. If you define a realtionship on a linked table, close the db, then reopen it the relationship will be gone. You must define the relationship in the back end.
 

Users who are viewing this thread

Back
Top Bottom