Finding related fields in multiple Tables

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Forgive me but I am new to Access. I have three fields, job#, trans_id and
GL_Acct that I would like to query and then correct the GL_Acct. I will need
to change the GL_Acct in every table affected. Does anyone now how to find
which tables have the three common fields?
 
Forgive me but I am new to Access. I have three fields, job#, trans_id and
GL_Acct that I would like to query and then correct the GL_Acct. I will need
to change the GL_Acct in every table affected. Does anyone now how to find
which tables have the three common fields?

Well... there's no way we can tell, because we don't see your database.

Are you storing this data redundantly, or is it a linking field? A basic
principle of relational database design is that you should store each piece of
information once, and once only. Is GL_Acct the Primary Key of one table? If
it occurs in other tables, do you have a Relationship linking it to the
accounts table? If so, you can set the Relationship's Properties to "Cascade
Updates"; any update done to the main table will be propagated to the related
tables.

If the GL_Acct is *not* involved in a relationship... maybe it should *not
exist* in the related tables.

What are your tables? What is each table's Primary Key? How are the tables
related?

John W. Vinson [MVP]
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top