 |
|
 |
|
Next: Running an Access Module
|
| Author |
Message |
External

Since: Nov 26, 2008 Posts: 3
|
(Msg. 1) Posted: Wed Nov 26, 2008 3:48 pm
Post subject: Typing Info Into Multiple Tables at Once Archived from groups: microsoft>public>access>tablesdbdesign (more info?)
|
|
|
Is it possible for me to type one column of info in one table and have it
also appear in another table? I have 3 tables that have two columns the
absolute same.
Case No. & Conservatoree. I need to have these two bits of info appear in
all 3 tables, without typing it in each one. I have set up a relationship
between the 3 tables with the Case No as my Primary Key. I have typed in my
info in the major table and that info won't appear in the other two tables.
Thank you for any help you can give me. >> Stay informed about: Typing Info Into Multiple Tables at Once |
|
| Back to top |
|
 |  |
External

Since: Nov 04, 2004 Posts: 737
|
(Msg. 2) Posted: Wed Nov 26, 2008 4:57 pm
Post subject: Re: Typing Info Into Multiple Tables at Once [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
Why? As in "why do you want to have data duplicated in multiple tables"?
What will having it duplicated allow you to do?
(hint: it is rarely necessary to duplicate data across multiple tables in a
well-normalized relational database.)
Regards
Jeff Boyce
Microsoft Office/Access MVP
"DebbieSue" <DebbieSue.RemoveThis@discussions.microsoft.com> wrote in message
news:F634CE68-EFCA-4049-9117-73A6864234FC@microsoft.com...
> Is it possible for me to type one column of info in one table and have it
> also appear in another table? I have 3 tables that have two columns the
> absolute same.
> Case No. & Conservatoree. I need to have these two bits of info appear in
> all 3 tables, without typing it in each one. I have set up a relationship
> between the 3 tables with the Case No as my Primary Key. I have typed in
> my
> info in the major table and that info won't appear in the other two
> tables.
> Thank you for any help you can give me.
>
> >> Stay informed about: Typing Info Into Multiple Tables at Once |
|
| Back to top |
|
 |  |
External

Since: Nov 16, 2007 Posts: 1707
|
(Msg. 3) Posted: Wed Nov 26, 2008 11:29 pm
Post subject: Re: Typing Info Into Multiple Tables at Once [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Wed, 26 Nov 2008 15:48:05 -0800, DebbieSue
<DebbieSue.RemoveThis@discussions.microsoft.com> wrote:
>Is it possible for me to type one column of info in one table and have it
>also appear in another table? I have 3 tables that have two columns the
>absolute same.
Then your tables are incorrectly structured.
>Case No. & Conservatoree. I need to have these two bits of info appear in
>all 3 tables, without typing it in each one. I have set up a relationship
>between the 3 tables with the Case No as my Primary Key. I have typed in my
>info in the major table and that info won't appear in the other two tables.
>Thank you for any help you can give me.
>
Relational databases use the "Grandmother's Pantry Principle": "A place - ONE
place! - for everything, everything in its place". You can determine the
Conservatoree by storing it once, in one table, with the Case No as its
primary key, and using a Query joining this table to any other table which
contains the Case No.
If you have three tables all of which have the Case No as the primary key, you
must have one to one relationships. These are very rare; what Entities
(real-life persons, things, or events) do these three tables represent? If
each record of each table contains information about a single case, why not
have just one table with all the fields? Do you perhaps have some repeating
groups of fields, in effect having a one to many relationship embedded in each
record?
--
John W. Vinson [MVP] >> Stay informed about: Typing Info Into Multiple Tables at Once |
|
| Back to top |
|
 |  |
External

Since: Nov 26, 2008 Posts: 3
|
(Msg. 4) Posted: Mon Dec 01, 2008 10:03 am
Post subject: Re: Typing Info Into Multiple Tables at Once [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
I understand what you are saying. With that in mind, I would need only 2
tables. I want to have another table for billing. I don't want a table with
the name, address, attorney, conservator, and jan - dec months for billing.
This would make my table very big. Of course I could design a form to put in
the billing for just that month. Well, I guess you changed my mind. I will
try it with one table.
Thank you,
DebbieSue
"John W. Vinson" wrote:
> On Wed, 26 Nov 2008 15:48:05 -0800, DebbieSue
> <DebbieSue DeleteThis @discussions.microsoft.com> wrote:
>
> >Is it possible for me to type one column of info in one table and have it
> >also appear in another table? I have 3 tables that have two columns the
> >absolute same.
>
> Then your tables are incorrectly structured.
>
> >Case No. & Conservatoree. I need to have these two bits of info appear in
> >all 3 tables, without typing it in each one. I have set up a relationship
> >between the 3 tables with the Case No as my Primary Key. I have typed in my
> >info in the major table and that info won't appear in the other two tables.
> >Thank you for any help you can give me.
> >
>
> Relational databases use the "Grandmother's Pantry Principle": "A place - ONE
> place! - for everything, everything in its place". You can determine the
> Conservatoree by storing it once, in one table, with the Case No as its
> primary key, and using a Query joining this table to any other table which
> contains the Case No.
>
> If you have three tables all of which have the Case No as the primary key, you
> must have one to one relationships. These are very rare; what Entities
> (real-life persons, things, or events) do these three tables represent? If
> each record of each table contains information about a single case, why not
> have just one table with all the fields? Do you perhaps have some repeating
> groups of fields, in effect having a one to many relationship embedded in each
> record?
> --
>
> John W. Vinson [MVP]
> >> Stay informed about: Typing Info Into Multiple Tables at Once |
|
| Back to top |
|
 |  |
External

Since: Nov 16, 2007 Posts: 1707
|
(Msg. 5) Posted: Mon Dec 01, 2008 11:29 am
Post subject: Re: Typing Info Into Multiple Tables at Once [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Mon, 1 Dec 2008 10:03:00 -0800, DebbieSue
<DebbieSue.RemoveThis@discussions.microsoft.com> wrote:
>I understand what you are saying. With that in mind, I would need only 2
>tables. I want to have another table for billing. I don't want a table with
>the name, address, attorney, conservator, and jan - dec months for billing.
Well, of COURSE you would have another table for billing. If you're talking
about fields named Jan, Feb, Mar then that's certainly incorrect. You would
instead have a Case table related one to many to a Bill table; the latter
table would have a CaseNo as a foreign key (it would NOT need the
Conservatoree or any other case information), and a BillDate field. For twelve
bills you would put in twelve records.
>This would make my table very big. Of course I could design a form to put in
>the billing for just that month. Well, I guess you changed my mind. I will
>try it with one table.
You certainly don't need to use all one table - use two tables but use them
normalized! Use a Form based on Case, and a Subform based on Billing, and
you'll be able to see both without needing to store information redundantly.
--
John W. Vinson [MVP] >> Stay informed about: Typing Info Into Multiple Tables at Once |
|
| Back to top |
|
 |  |
External

Since: Nov 26, 2008 Posts: 3
|
(Msg. 6) Posted: Mon Dec 01, 2008 1:08 pm
Post subject: Re: Typing Info Into Multiple Tables at Once [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
I will try that. Forms are not my thing on this newer version.
Debbie
"John W. Vinson" wrote:
> On Mon, 1 Dec 2008 10:03:00 -0800, DebbieSue
> <DebbieSue.TakeThisOut@discussions.microsoft.com> wrote:
>
> >I understand what you are saying. With that in mind, I would need only 2
> >tables. I want to have another table for billing. I don't want a table with
> >the name, address, attorney, conservator, and jan - dec months for billing.
>
> Well, of COURSE you would have another table for billing. If you're talking
> about fields named Jan, Feb, Mar then that's certainly incorrect. You would
> instead have a Case table related one to many to a Bill table; the latter
> table would have a CaseNo as a foreign key (it would NOT need the
> Conservatoree or any other case information), and a BillDate field. For twelve
> bills you would put in twelve records.
>
> >This would make my table very big. Of course I could design a form to put in
> >the billing for just that month. Well, I guess you changed my mind. I will
> >try it with one table.
>
> You certainly don't need to use all one table - use two tables but use them
> normalized! Use a Form based on Case, and a Subform based on Billing, and
> you'll be able to see both without needing to store information redundantly.
> --
>
> John W. Vinson [MVP]
> >> Stay informed about: Typing Info Into Multiple Tables at Once |
|
| Back to top |
|
 |  |
External

Since: Nov 16, 2007 Posts: 1707
|
(Msg. 7) Posted: Mon Dec 01, 2008 3:04 pm
Post subject: Re: Typing Info Into Multiple Tables at Once [Login to view extended thread Info.] Archived from groups: per prev. post (more info?)
|
|
|
On Mon, 1 Dec 2008 13:08:11 -0800, DebbieSue
<DebbieSue.TakeThisOut@discussions.microsoft.com> wrote:
>I will try that. Forms are not my thing on this newer version.
I haven't gotten used to 2007 yet either... but forms are ABSOLUTELY essential
to any professional application.
--
John W. Vinson [MVP] >> Stay informed about: Typing Info Into Multiple Tables at Once |
|
| Back to top |
|
 |  |
| Related Topics: | multiple tables with same fields - Hello all. I searched and found the following but do not think it meets what I am attempting to do. http://groups.google.com/group/microsoft.public.access.tablesdbdesign/browse_thread/thread/e2a70336e9a81462 There are five tables within my database: [1]...
Using "types" table for multiple other tables - Hi Everyone, I think I can do this but I want to make sure. I use Access 2003 I have a database with employees. There are many other tables but these are the tables I need to have help on. Purpose is to document the levels of discipline an employee....
Help with design of form with multiple tables - I have tried numerous ways of setting up this subform and each one has presented with shortcomings. Maybe someone has a suggestion of a better way of designing this: Form: MAIN has each patient's personal information Subform: Should list the referral....
Adding Records to multiple tables - I am working on a database with the primary function of tracking attendance for many people to many events. The database is set up so that there is a table of personnel and a table of events where each user's name and each event appear once..
Subdatasheets, Multiple Linked tables - I will admit I new to designing databases, but I am not a computer novice by any means. I am trying to design a simple database about ocean currents at various locations throughout the Gulf. Initially, I was going to use 3 tables within a single.. |
|
You can post new topics in this forum You can reply to topics in this forum You can edit your posts in this forum You can delete your posts in this forum You can vote in polls in this forum
|
|
|
|
 |
|
|