You are very much on the right track, but I want to try to verify a few
things.
> I got the impression that I should be minimizing my tables even more than
> I
[quoted text clipped - 4 lines]
> length,breadth,beam,name,class,colorscheme,etc) & that change rarely if at
> all..??..
Yes, each table should store the date regarding a single type of entity --
i.e. vessels. Each field in each table should store a single, or atomic,
value for each attribute. This is not so much about whether or not a given
attribute will change, but whether or not it is a single attribute. When you
need multiple attributes that, essentially, describe the same thing -- i.e.
Route1, Route2, Route3,...RouteX, then you need a child table to store each
instance of a route that may be related to a vessel. Of course, if a boat is
only on one Route at any given time -- which seems likely to me -- then it's
only a matter of changing the Route attribute when needed and that wouldn't
require a different table, necessarily.
> I use VesselID as key in Vessel/Route table as well as PKey in
> Vessel/Equipment tables. I hope I have this right now.
If VesselID is the primary key in each of the sub tables, then you will only
be able to have one record per each record in the Vessels table. If a vessel
requires multiple equipment values, then your table might look like this.
tblVesselEquipment
VesselEquipmentID (PK)
VesselID (FK)
....other fields related to a piece of equipment.

Signature
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security: www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Big List: www.ltcomputerdesigns.com/JCReferences.html
> Lynn,
>
[quoted text clipped - 40 lines]
>> same
>> situation might apply here as to tblFleetClass.
FerryMary - 11 Apr 2005 17:12 GMT
Thank you so much,
this eases my task considerably. You're right a vessel only works one route
at a time, :-) (that's so funny) I think I'm so spreadsheet-minded, that
when I tried to force myself to stop thinking that way I overdid it.
Thanks again
Mary
> You are very much on the right track, but I want to try to verify a few
> things.
[quoted text clipped - 75 lines]
> >> same
> >> situation might apply here as to tblFleetClass.
Lynn Trapp - 12 Apr 2005 12:28 GMT
You're very welcome, Mary. It's so easy to bring the dreaded disease
"spreadsheet-itis" over from the Excel world. I think you are getting it
figured out.

Signature
Lynn Trapp
MS Access MVP
www.ltcomputerdesigns.com
Access Security: www.ltcomputerdesigns.com/Security.htm
Jeff Conrad's Big List: www.ltcomputerdesigns.com/JCReferences.html
> Thank you so much,
>
[quoted text clipped - 105 lines]
>> >> same
>> >> situation might apply here as to tblFleetClass.