J
Jeff Bodin
HELP!
I am building what could be a flat file database, but
because of the amount of data I will be tracking, it would
be better if it were multiple (5) smaller tables.
I have ONE common Field Name (Called "Address") between
what I will call the "Table1" table and the other 4 tables
("Table2", "Table3","Table4", and "Table5").
Because I need the information in the "address" key to be
specific to that Field Name across all tables, I would
like any tables to automatically create a record in all
other tables whenever I place a new address in one table
(consequntly, each table should have the same number of
records).
i.e., If enter the address "1313 Mockingbird Lane" into
the address in Table 1, Tables 2-5 all create a new record
with this "1313 Mockingbird Lane" in their respective
address fields).
Right now, I can't figure out how to do this without
having to type _the_ specific address in all other 4
tables. What this will lead to is a different number of
records in each
Is it going to be easier to just go to a flat file? Or am
I missing something simple here?
I tried making "Address" a primary key in each table, and
having a 1:1 relationship established between:
"Table1.Address" and Table2.Address",
"Table1.Address" and Table3.Address",
"Table1.Address" and Table4.Address", and
"Table1.Address" and Table5.Address".
But that doesn't seem to work - It allows me to enter any
data I want in Table1.address, but enter only what's in
table1.adress into the other table's.address fields. I
need this to basically autofill (or I will wind up with
more records in table 1 than I will tables 2-4).
Thanks,
- Jeff
I am building what could be a flat file database, but
because of the amount of data I will be tracking, it would
be better if it were multiple (5) smaller tables.
I have ONE common Field Name (Called "Address") between
what I will call the "Table1" table and the other 4 tables
("Table2", "Table3","Table4", and "Table5").
Because I need the information in the "address" key to be
specific to that Field Name across all tables, I would
like any tables to automatically create a record in all
other tables whenever I place a new address in one table
(consequntly, each table should have the same number of
records).
i.e., If enter the address "1313 Mockingbird Lane" into
the address in Table 1, Tables 2-5 all create a new record
with this "1313 Mockingbird Lane" in their respective
address fields).
Right now, I can't figure out how to do this without
having to type _the_ specific address in all other 4
tables. What this will lead to is a different number of
records in each
Is it going to be easier to just go to a flat file? Or am
I missing something simple here?
I tried making "Address" a primary key in each table, and
having a 1:1 relationship established between:
"Table1.Address" and Table2.Address",
"Table1.Address" and Table3.Address",
"Table1.Address" and Table4.Address", and
"Table1.Address" and Table5.Address".
But that doesn't seem to work - It allows me to enter any
data I want in Table1.address, but enter only what's in
table1.adress into the other table's.address fields. I
need this to basically autofill (or I will wind up with
more records in table 1 than I will tables 2-4).
Thanks,
- Jeff