I have been working on this project for about a year now, (spare time only!) and I have read and learned a lot since I began but I still seem to hit the same problem.
I am designing a database for mylocal cemetery. Because it serves asmall area, and because of the nature of the project, people can have severalroles. They can be a Grave Owner, an Undertaker,a Minister, a Clerk, who registers the Burials and eventually end up Deceased. They can also have more than one addressthroughout their lives and several people can live at one address. I recognise these are many to manyrelationships.
I have created a Persons table linked through aPersonsAdresses table to the Addresses Table and have also related the Personstable to the Roles table through the PersonsRoles table.
My problem comes when I try to use the tables (withother tables) to record the Burials. Idon’t know whether I should have a Burials table, or whether it should be aquery. Several people crop up in eachBurial record. There is the Deceased,the Minister, the Undertaker and the Clerk.
If it is a table, then I would need an UndertakersTable, a Clerks table etc. because I can’t repeat “PersonID” in several places,can I?
Please can anyone help me with this problem– I keep thinking that I know how to do it and then I find I can’t!