twgonder
Member
- Local time
- Today, 17:43
- Joined
- Jul 27, 2022
- Messages
- 178
Here’s my first post to this forum, and it’s going to be a doozy.
I’m coming from a mini/mainframe environment, where things weren’t normalized very well.
But as I go down the rabbit hole of Access, I wonder which of two approaches might be best for flexibility and usability.
I’ve created these tables (mostly in my head) for organizing people and their attributes and foreign attributes:
tblEntity A living or legally created being (corporation, LLC, etc.)
tblPoc A point of contact (hence POC), a real location (maybe virtual) like address, phone, fax, GPS coordinate, etc.
These two tables have a many to many relationship, requiring a third table tblEntityPoc.
For example, my son who is seven lives with me at my address. We share a land-line phone. We don’t share my cell number. We share a FAX machine, but not emails.
We are two different humans in tblEntity.
My cat José is in tblEntity too. He shares my address but nothing else in tblPoc
If I put all the types of fields for a POC in one record, but only for one fldType of POC then I have a lot of empty fields, but they don’t use much space in a variable length file system like Access. I’m not sure how SQL Server or other flavors fare, if they are fixed length or variable length fields.
For example, if I create a street address for myself (and my son and José) in tblPoc that record will have a fldType of “addr” and the record won’t have phone, cell, FAX, etc. Each of those would be in its own record.
The other choice is to create a half-dozen or so tables very specific to the fldType of POC. In other words, a tbl for land-lines won’t include cell phone numbers, because in many countries they don’t share the same formatting (and some different attributes, i.e., the land-line could link to an address in tblPoc, but a cell is mobile, so it can’t), true for some Faxes (formatting) too. Or maybe I have one tbl for all types of phones or fax, but then I have to have special formatting for each field (which I would have to do anyways if there was just one big tbl holding all POC types), and it might cause a problem with the next reality below.
Imagine I have one land-line and two cell phones, but only one of those can be a preferred contact for phone calls.
Has anyone been down this rabbit hole before that can offer some insights for dealing with this in Access?
I’m coming from a mini/mainframe environment, where things weren’t normalized very well.
But as I go down the rabbit hole of Access, I wonder which of two approaches might be best for flexibility and usability.
I’ve created these tables (mostly in my head) for organizing people and their attributes and foreign attributes:
tblEntity A living or legally created being (corporation, LLC, etc.)
tblPoc A point of contact (hence POC), a real location (maybe virtual) like address, phone, fax, GPS coordinate, etc.
These two tables have a many to many relationship, requiring a third table tblEntityPoc.
For example, my son who is seven lives with me at my address. We share a land-line phone. We don’t share my cell number. We share a FAX machine, but not emails.
We are two different humans in tblEntity.
My cat José is in tblEntity too. He shares my address but nothing else in tblPoc
If I put all the types of fields for a POC in one record, but only for one fldType of POC then I have a lot of empty fields, but they don’t use much space in a variable length file system like Access. I’m not sure how SQL Server or other flavors fare, if they are fixed length or variable length fields.
For example, if I create a street address for myself (and my son and José) in tblPoc that record will have a fldType of “addr” and the record won’t have phone, cell, FAX, etc. Each of those would be in its own record.
The other choice is to create a half-dozen or so tables very specific to the fldType of POC. In other words, a tbl for land-lines won’t include cell phone numbers, because in many countries they don’t share the same formatting (and some different attributes, i.e., the land-line could link to an address in tblPoc, but a cell is mobile, so it can’t), true for some Faxes (formatting) too. Or maybe I have one tbl for all types of phones or fax, but then I have to have special formatting for each field (which I would have to do anyways if there was just one big tbl holding all POC types), and it might cause a problem with the next reality below.
Imagine I have one land-line and two cell phones, but only one of those can be a preferred contact for phone calls.
Has anyone been down this rabbit hole before that can offer some insights for dealing with this in Access?
Last edited: