Hey, I am creating a inventory database and I want to keep in normalized, but in this situation I'm not sure if I can.
Basically a shipment comes in and from that shipment all the serial numbers, part numbers, part description, and Manufacturer number has to be recorded. The problem is most shipments are a bit different then the last one.
My table right now has over 100 table fields for each item (we have 9 different items that have to be recorded. for example, Box1, Box2, Box3, Box1a, Box2a, Box3a, Box1z, Box2z, Box2z.
All these items are slightly different, and each Box contains a multitude of smaller items. So I would have a table for Box1 which contains about 25 items each having serial numbers, part numbers, part description, and Manufacture number, though, some items don't have all these.
Right now I have 9 tables, each having about 100 slots for number input.
SerialNumA1 PartNumA1 PartDescA1
SerialNumA2 PartNumA2 PartDescA2
ect...
I could separate Serial Number into its own table, but then I run into problems with the relationship, as it would get messed up I believe because not all parts have serial numbers.
Any ideas? sorry for the length, its just a weird project.
Basically a shipment comes in and from that shipment all the serial numbers, part numbers, part description, and Manufacturer number has to be recorded. The problem is most shipments are a bit different then the last one.
My table right now has over 100 table fields for each item (we have 9 different items that have to be recorded. for example, Box1, Box2, Box3, Box1a, Box2a, Box3a, Box1z, Box2z, Box2z.
All these items are slightly different, and each Box contains a multitude of smaller items. So I would have a table for Box1 which contains about 25 items each having serial numbers, part numbers, part description, and Manufacture number, though, some items don't have all these.
Right now I have 9 tables, each having about 100 slots for number input.
SerialNumA1 PartNumA1 PartDescA1
SerialNumA2 PartNumA2 PartDescA2
ect...
I could separate Serial Number into its own table, but then I run into problems with the relationship, as it would get messed up I believe because not all parts have serial numbers.
Any ideas? sorry for the length, its just a weird project.