Construct an entity relationship diagram for the database

Assignment Help Database Management System
Reference no: EM131934872

Database Concepts

Question: The Relational model

A spreadsheet was used to keep data for the booking system of the ABC Clinic, with sample data shown in Table 1. Columns 1-4 contain information for doctors, Columns 5-9 contain information for patients and the last 3 columns contain information for patient's appointments with doctors. The spreadsheet for the table is also available on Canvas.

1911_Data for the ABC Clinic.jpg

Table 1. Data for the ABC Clinic

With more and more patients and doctors, the ABC Clinic decides to go for database system to manage data. You are asked to design a relational database to keep data to answer clinic operation queries such as:
- List the patient appointments for each doctor for a given date.
- When a patient rings to make an appointment, give the available time slots for a given date.
- Retrieve the address of patients to send notices via mail services.

Questions:

A database schema of one relation as shown below is proposed, where semantics of attributes are self-explanatory. Discuss at least two weaknesses of this design.

ABC(doc-name, doc-gender, registration_num, qualification, pat-name, pat-gender, DOB, address, phone-num, appoint-date, appoint-time, type)

Propose your own design for the database. Your design must be able to keep all information shown in Table 1. Explain your design. Give the schema for each relation in your database and specify their data integrity constraints (underline primary keys and put asterisk for foreign keys).

Question 2. Relational model -- SQL DDL and DML

According to your design for the ABC database in Question 1.2, complete below tasks to populate your database with the data shown in Table 1.

Give the CREATE TABLE statement for each relation, including primary key and any foreign key constraints.

Give the INSERT INTO statements for each relation in your design. All data shown in Table 1 must be inserted into your database.

Question 3. SQL

In addition to the lecture notes, you should also study by yourself the SQL*Plus tutorial on Canvas (the Oracle section) and other resources for Oracle syntax and useful functions.

The ER model for the Academics database is as follows:

The relational schema for the Academics database is as follows:

321_Relational schema.jpg

DEPARTMENT(deptnum, descrip, instname, deptname, state, postcode)

ACADEMIC(acnum, deptnum*, famname, givename, initials, title) PAPER(panum, title)
AUTHOR(panum*, acnum*)

FIELD(fieldnum, id, title)

INTEREST(fieldnum*, acnum*, descrip)

Some notes on the Academics database:
- An academic department belongs to one institution (instname) and often has many academics. An academic only works for one department.

- Research papers (PAPER) are often authored by several academics, and of course an academic often writes several papers (AUTHOR).

- A research field (FIELD) often attracts many academics and an academic can have interest (INTEREST) in several research fields.

Download and run the SQL script academics.sql on Canvas (the Oracle section) to define and populate the Academics database in your Oracle account.

Write ONE SQL query for each of questions 3.1--3.8, and each component of an SQL statement must be on a separate line. Your query should not produce duplicates in output but use DISTINCT only if necessary. Include answers for Questions 3.9 and 3.10 as comments starting with "//" to make an SQL script executable in SQL Developer.

Questions:

List the names of all the institutions (instname) currently in the database.
How many academics are there in the department where deptnum=100. Return the total number.
List in alphabetical order the family name (famname) and given name (givename) of academics who has a title.
List papers whose title contains the words "Data" or "Software", in upper or lower cases. List the
panum and title of these papers.
Return the panum of papers written by the academic "Mark Yee".
Return the famname and givename of academics whose acnum is in the range [100..199] or whose givename starts with "S".
List the panum of papers having at least two authors.
List in alphabetical order the famname, givename of academics who work for institutions in Queensland. Note: the value of Queensland in the database is QLD or Qld.
The below query is intended to list the fieldnum and title of fields whose fieldnum is between 500 and 599 or whose title contains the word 'Data'. But it has errors. Give the correct SQL query.
select fieldnum, title from field
where fieldnum >=500 and <=599 or upper(title) like 'Data%';
Describe in English what the output will be from the SQL query below. Do not give a literal description of each line of the query.
select acnum, field.fieldnum, title, descrip from field, interest
where field.fieldnum=interest.fieldnum and trim(ID) like 'B.1._';

Question 4. ER model

TXT is a logistics and transport company. You are asked to design a database for scheduling their transport jobs. Requirements for the database are as follows:
- Each truck has a unique registration No, and is also described by type, and year made.
- Each customer of TXT has a unique ABN and is also described by the name, and contact phone number.
- Delivery jobs are identified by the unique job No, and are also described by "from" and "to" destinations, and estimated distance to travel.
- Drivers are identified by the unique employee ID, and are also described by first name, last name, address and phone number.
- A customer may book in several delivery jobs and a job is from only one customer. A job must have an "owning" customer.
- A driver can be assigned several delivery jobs but a job has only one driver. Some description about the job is also recorded. Each job has a Status (eg open, complete,etc) and this is maintained in the database.
- A job is assigned only one truck but a truck can be assigned to several jobs.

According to the given description, state any assumptions you make and construct an Entity Relationship (ER) diagram for the database. You must represent entities, relationships and their attributes, and all applicable constraints in your ER diagram. Explain any concepts in the description that cannot be expressed in the ER diagram.
- Your ER diagram must only use notations from the lecture notes and must not be hand drawn. ER diagrams using other notations will receive zero mark for this question.
- You can use the ER diagramming tool Dia, which can be downloaded from Canvas (The Tools section) and is also available as an App on mydesktop.rmit.edu.au. When exporting your ER diagram in Dia to a pdf file, you need to first set "page setup" to "Fit to 1 by 1" so that your pdf diagram scales properly. You can also use any other diagramming tool.

Some common errors in ER diagrams:
- If the scenario is set in say, a club, you do not need an entity for the club. The arrangement you depict in the ER diagram is the club.
- Entities do not connect to other entities with straight lines. Entities have relationships to/with other entities so there has to be a relationship between connected entities.
- Every entity must have a primary key.
- The names of all relationships and entities must be unique.
- There are no foreign keys in ER diagrams. They come about as part of mapping an ER model into a relational schema.

Question 5. Relational database design.

Designing an ER diagram is the first step for database design. It is critical that we understand what makes a good design. Figure 2 is an ER diagram designed for the Orders database about customers and their orders for a company. The semantics of attributes, entity sets and relationships is as expressed in their names. Each item in the database must have an "owning" salesman, whether or not it is being ordered.

Discuss any issues with the given ER diagram. Give your suggested ER diagram.

Map your suggested ER diagram to a relational database schema. For each relation schema in the mapped relational database schema, indicate the primary key (underline) and any foreign keys (asterisk).

1868_ER diagram.jpg

Figure 2: The Orders database ER diagram

Verified Expert

The task of the assignment involves 5 question.The question 1 involves listing the anomalies that exist in the tables and the normalized table design.The question 2 involves writing CREATE and INSERT table script for the database design created in Question 1, Question 3 involves writing queries for the provided table design,Question 4 involves drawing ER diagram for the requirement & The question 5 involves restructuring the ER diagram and constructing logical design for the ER diagram.

Reference no: EM131934872

Questions Cloud

What are some interventions that are used in field currently : What are some interventions that are used in the field currently? Are there any evidence-based programs that use these environmental and reinforcement.
Accumulated in the account on the date of the last deposit : If Malone continues with her plan for two and one-half years, how much will be accumulated in the account on the date of the last deposit?
Examples of deborah sampson gannett : Despite the revolutionary era's talk about liberty and equality, the condition of women and slaves changed little. Do you agree or disagree?
What is the mirr for this project : Morningside Bakeries recently purchased equipment at a cost of $621,500. What is the MIRR for this project?
Construct an entity relationship diagram for the database : Construct an Entity Relationship diagram for the database. You must represent entities, relationships and their attributes, and all applicable constraints
Explain how you applied social work practice skills : Explain how you applied social work practice skills when performing the activities during your process recording.
Prevent the rise of tyranny : Americans in the late eighteenth century believed that government must be kept weak in order to prevent the rise of tyranny and to guarantee the rights
Describe the differences between two types of corporatioion : How are closely held corporations different from publicly traded corporations? Corporations may have one or more shareholders or owners.
Describe the rise of nazism in germany : Describe the rise of Nazism in Germany. Indicate the conditions present in Germany that made it possible for Hitler to come to power.

Reviews

Write a Review

Database Management System Questions & Answers

  Knowledge and data warehousing

Design a dimensional model for analysing Purchases for Adventure Works Cycles and implement it as cubes using SQL Server Analysis Services. The AdventureWorks OLTP sample database is the data source for you BI analysis.

  Design a database schema

Design a Database schema

  Entity-relationship diagram

Create an entity-relationship diagram and design accompanying table layout using sound relational modeling practices and concepts.

  Implement a database of courses and students for a school

Implement a database of courses and students for a school.

  Prepare the e-r diagram for the movie database

Energy in the home, personal energy use and home energy efficiency and Efficient use of ‘waste' heat and renewable heat sources

  Design relation schemas for the entire database

Design relation schemas for the entire database.

  Prepare the relational schema for database

Prepare the relational schema for database

  Data modeling and normalization

Data Modeling and Normalization

  Use cases perform a requirements analysis for the case study

Use Cases Perform a requirements analysis for the Case Study

  Knowledge and data warehousing

Knowledge and Data Warehousing

  Stack and queue data structure

Identify and explain the differences between a stack and a queue data structure

  Practice on topic of normalization

Practice on topic of Normalization

Free Assignment Quote

Assured A++ Grade

Get guaranteed satisfaction & time on delivery in every assignment order you paid with us! We ensure premium quality solution document along with free turntin report!

All rights reserved! Copyrights ©2019-2020 ExpertsMind IT Educational Pvt Ltd