Skip to content

Latest commit

 

History

History
52 lines (29 loc) · 5.04 KB

README.md

File metadata and controls

52 lines (29 loc) · 5.04 KB

COSC 304 - Introduction to Database Systems
Lab 4: Building ER diagrams using an UML modeling tool

This lab designs ER diagrams in UML notation. The AutoER auto-grading software is used to design and mark your UML diagrams. It is also valuable to learn how to use commercial UML design software such as astah. Note: Astah no longer has a free community version. Request a student license or use the 30-day trial. diagrams.net is an online drawing tool that can also be used but it does not have as good support for database modeling in UML.

Example #1

Construct a database design in UML for a fish store where:

  1. A fish store maintains a number of aquaria (tanks), each with a number, name, volume and color.
  2. Each tank contains a number of fish, each with an id, name, color, and weight.
  3. Each fish is of a particular species, which has a id, name, and preferred food.
  4. Each individual fish has a number of events in its life, involving a date and a note relating to the event.

Example #2

Design and draw an ER diagram for a hotel company reservation system with the following requirements:

  1. There are many hotels in the chain. Each hotel has a name, a street address (which is made up of a street number, street name, city, state, and postal code), a home page URL (Web address), and a primary phone number.
  2. Each hotel consists of a set of rooms arranged on various floors. Each room has an identifier which is unique within that hotel. Most of the time, rooms are numbered (e.g. 690), but they may be given a name (e.g. Presidential Suite) instead, so long as the name or number is unique within the hotel. Floors are numbered. For simplicity, assume that each room is on only one floor.
  3. For each room, it's also necessary to keep track of how many beds it has, as well as whether smoking is allowed in the room. This information is used to help match guests to rooms with desired characteristics.
  4. When a guest plans to stay at a hotel, he or she makes a room reservation at the desired hotel. Each reservation indicates information about the guest, the desired arrival and departure dates, as well as preferences that aid in selecting the right kind of room for that guest: whether the room should be smoking or non-smoking, the number of beds, and whether the room should be on a high floor or a low floor. These room preferences are optional, and are not included with every reservation; some guests are willing to take any available room, while some only care about some preferences but not others.
  5. Also required with each reservation is information about a credit card that is used to secure the reservation; credit cards are indicated by a credit card number (which is a sequence of up to 16 digits) and an expiration date (a month and a year, such as "January 2020").
  6. At any given time, a guest may have multiple reservations. A reservation is for a single room.
  7. For each guest, the database must store the guest's first, middle, and last names, street address, email address, and three phone numbers (home, work, cell). Email addresses and the phone numbers are optional, while the other information is required. Note that if multiple people stay in a room, we are only storing information about the one person who reserved the room.
  8. A single invoice is generated for a reservation at the hotel, detailing the individual charges accrued by the guest. These charges include not only the regular room rate, but also applicable taxes, as well as charges at the hotel's restaurants, bars, spas, shops, and so on. An invoice is displayed either in printed or Web-based form as a sequence of line items, with each line item consisting of a description and an amount, such as "Hotel Cafe $29.75". Note that the database does not keep track of, say, the costs of items on the restaurant's menu or the cost of renting each room at various times throughout the year; it is assumed that another software system provides this information to our database, since our system only handles reservations and billing.
  9. When a guest pays his or her bill or a portion of his or her bill a line item is added to the invoice that indicates how much was paid, and in what form the payment was made (e.g. "Visa $-500.00", in the case of a $500 payment made using a Visa credit card).
  10. At the bottom of each invoice is a total balance, which is the sum of the amounts in each of the line items, including both charges and payments. An invoice is considered paid if the amount is $0.00.