



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
UPS company prides itself on having up-to-date information on the processing and current location of each shipped item. To do this, UPS relies on a company-wide information system. Shipped items are the heart of the UPS product tracking information system. Shipped items can be characterized by item number (unique), weight, dimensions, insurance amount, destination, and final delivery date. Shipped items are received into the UPS system at a single retail center. Retail centers are characterized by their type, uniqueID, and address. Shipped items make their way to their destination via one or more standard UPS transportation events (i.e., flights, truck deliveries). These transportation events are characterized by a unique scheduleNumber, a type (e.g, flight, truck), and a deliveryRoute.
Typology: Study Guides, Projects, Research
1 / 6
This page cannot be seen from the preview
Don't miss anything!




1. Create an Entity Relationship diagram that captures this information about the UPS company. Be certain to indicate identifiers and cardinality constraints.
The "Shipped Items" entity represents the shipped items, with "ItemNumber" as the primary key (PK). It has a one-to-many (1..) relationship with the "Retail Centers" entity, indicated by the line with crow's foot at the "Shipped Items" side. The "Retail Centers" entity represents the retail centers, with "UniqueID" as the primary key (PK). The "Transportation Events" entity represents the transportation events, with "ScheduleNumber" as the primary key (PK). There is a one-to-many (1..) relationship between "Retail Centers" and "Transportation Events," indicated by the line with crow's foot at the "Transportation Events" side.
Shipped Items Retail Centers
Transportation Events
2. Normalize all the relations extracted from the above Entity Relationship diagram in Part 1.
First Normal Form (1NF):
Second Normal Form (2NF):
No partial dependencies exist in the relations, so they already satisfy 2NF.
Third Normal Form (3NF):
No transitive dependencies exist in the relations, so they already satisfy 3NF.
The normalized relations are as follows:
Shipped Items (ItemNumber, Weight, Dimensions, InsuranceAmount, Destination, FinalDeliveryDate) Retail Centers (UniqueID, Type, Address) Transportation Events (ScheduleNumber, Type, DeliveryRoute)