I am working to create a database and I need help figuring out the correct type of relationship classes to make.
I am tracking activity of ships. I have a point feature class of ports, a table of ship names, and I was hoping to create a table of activities ( unload, load up, cargo type ect) of these ships.
My original thought was to create a one to many between the ports and ships, then another one to many between the ships and activities.
But this results in duplicate ship records in the ship table.
Is this solvable with a many to many between the ports and ships maybe?
Thanks for any feedback