Implementing the er model provided

Assignment Help Database Management System
Reference no: EM131481296

Assessment task

Normalization

a) Map the ERD, from the sample solution, into a set of relations in at least Third Normal Form (3NF). You must ensurethat your relations meet 3NF. There is no need to show yourworking.

b) Select any two (2) of your relations from the previous step, 1a), and perform the following for each ofthose two relations:
- List all the functional dependencies exist in therelation.
- Demonstrate that the relation meets Third Normal Form (3NF).
For your help, anexample for a Student relation's 3NF justification has been provided below:
STUDENT (StudentID, Name, Address,DateOfBirth)

i. The primary key is StudentID which identifies a student. There will be one student name per Student ID because only one nameis recorded for each student. Even though astudent may have multiple addresses (e.g. a home address and a work address), the case studystates that there is a need to record the home address only and hence there will be only one address for each student. There will be only one date of birthfor each student. Thus, there are no repeating groups. Hence, this relation is in 1NF.

ii. The primary key is StudentID. This is the only candidate key since Name is not guaranteedto be unique (two different students may have the same name). Address is also notguaranteed to be unique.This means that Student ID functionally determines every other attribute inthe table. There is a single valued simple candidatekey (StudentId) and therefore no partial dependencies are possible. Hence, the relation is in 2NF.

iii. Name cannot be used tofunctionally determine any other attribute in the table since two different students may have thesame name; likewise for address and date of birth. Therefore there are no transitive dependenciesin the table. Therefore it meets the requirements of first, second and third normal form.

2 Relational database implementation

Note: Use the relations that you created in the above step 1-Normalization to create a database. The recommended tool for this work is Microsoft Access, version 2010 or later. One reasonfor recommending Microsoft Access is that your unit lecturer/tutor will be able to provide adequate support to you in the use ofthis tool.If you choose to use a different DBMS, then there is no guarantee that your lecturer/tutor will be able to provide enough support to you. The remainder of this document assumes that you are usingMS-Access.

In implementing the ER model provided, you must complete the following tasks:

- Create all the relations in a Microsoft Access database. Consider each attribute in every tableand make appropriate choices regarding data types & sizes, indexes, required/not required and validation rules. Your choices should be appropriate for each attribute and should supportdata integrity. (Note: see the Data Integrity section below for specific data integrity requirements)
- Create relationships as appropriate. Enforce referential integrity for all appropriate relationships in the database. Apply cascade update and/or deleteoptions wherever necessary.
- Review the default indexcreated by Access for each table. You should ensure that theindexes follow the guidelines given in the unittextbook.
- Populate the database with sample data of your own. You must include sufficient sample data to testyour queries and report. Please note thatthe expected result of query questions may depend on the actual sample datapopulated.

Data integrity

You are required to implement integrity constraints within the database to enforce the following requirements:

- Fees/Chargesshould be positive currency and expressed in 2 decimals only.
- Date values should not be predated.
- Name of patients/medical specialistsshould not be null.
- State values should be limited to Australian States/Territories only.
- Skills and experience values should not be null.
- Discount amount should be positive and cannot exceed $50.

Information requests

Create queries to answer the following information requests. Note: Do not use the Access querybuilder (QBE) to create your queries - you should type the queries manually using SQLview/editor.

Themarking process of the queries for information requests may also consider the effectiveness of your SQL statements that have been used in the queries.It is important that your SQL statement must reflect the correct business logic & SQLsyntax.(Use enoughsampledataso that the output is produced by each and every query).

1. Display the details of medical specialist(s) who has/have never performed/completed any appointment.

2. Display the details of appointment, name of the patient and medical specialist involved in the most expensive appointment.

3. For each of the medical specialists, display his/her name and the number of appointments completed so far.

4. For each of the appointment completed, display the date, (start) time, name of the patient and total fees/charges of the appointment, discount amount and final amount payable. (Final amount payable = total appointment charges - discount amount )

5. Which patients have consulted more than one specialist? Display the details of such patients only.

6. Display the details of the patient(s) whose name contains the word "more". Show the results in ascending order of the name.

Note: The word ‘name' is a reserved word in MS Access. Wherever you use it for SQL query, youneed to put a bracket like [name]. Follow the same technique for other reserved words too.

Report
Create a simple report object showing the details of skills and experience of the each of the medical specialists.The details have to be presented in ascending order of the (first)name of the medical specialist.

Hints:

- Create a query that lists all details needed for a report. If you are unable to formulate this query, then create a report that is based directly on the table(s). [Note: you will not be able to obtain full marks for the report creation if you base your report directly on the table(s) and some criteria are not met in your reports.]

- Use the report wizard to generate a basic report based upon your query [or the table(s) if you were unable to formulate the query].

- Once the report wizard finishes, switch to design view and rename the labels appropriately; for example, change the label ‘ConsultationDate' to ‘ConsultationDate'.

Implementation Report

You must also provide a short implementation report describing your experiences with thisassignment. You may discuss any of the following:
1. Any two interesting things/procedures you learnt by doing this assignment.

2. Any one requirement of the assignment that was relatively difficult/complex to solve but successfully completed by you.
Use the implementation report to demonstrate that you have thought carefully about the issues thatarise when implementing a relational database.

Microsoft Access databases file containing:

1. Tables with sample data

2. Relationships

3. Queries

4. Integrityconstraints

5. Report (object).
A Microsoft Word documentcontaining:

1. Two relations with functional dependencies and demonstration of normalization

2. Implementation report

Your document should contain appropriate identification information (your student number, name,unit number, etc.) and should contain the relevant headings for eachsection.

Reference no: EM131481296

Questions Cloud

Assess the current company profile : Assess the current company profile and identify any current or potential diversity issues.
Define the gamblers fallacy : Your instructor is very conscientious and always makes sure that exam answers are randomly distributed. However, you notice that the first five answers.
How comfortable or confident you are that made right choice : Indicate, on a scale of 1 to 10, how comfortable or confident you are that you made the right choice, with 10 being most confident.
Social network vs company rights : Identify the relevant issues, stating assumptions if appropriate. Note: The emphasis at this stage is on getting an overview of the issues involved.
Implementing the er model provided : COIT20247 Database Design and Development - implementing the ER model provided - Create all the relations in a Microsoft Access database
What would behavioral economics predict : Suppose that a university wishes to maximize the response rate for teaching evaluations. The administration develops an easy-to-use online evaluation system.
Develop a steady but highly-qualified stream of candidates : Job descriptions were inconsistent, long but vague lists of high level "duties and responsibilities" and qualifications.
What concept from behavioral economics explains the behavior : Many people give to charity and leave tips. What prediction does utility theory make about each of these activities? Think of the person's narrow self-interest.
How would a behavioral economist describe this decision : Given a choice of an extra $1,000 or a gamble with the same expected value, a person prefers the $1,000. But given a choice of a loss of $1,000 or a gamble.

Reviews

len1481296

5/2/2017 3:57:38 AM

• Create a query that lists all details needed for a report. If you are unable to formulate this query, then create a report that is based directly on the table(s). [Note: you will not be able to obtain full marks for the report creation if you base your report directly on the table(s) and some criteria are not met in your reports.] • Use the report wizard to generate a basic report based upon your query [or the table(s) if you were unable to formulate the query]. • Once the report wizard finishes, switch to design view and rename the labels appropriately; for example, change the label ‘ConsultationDate’ to ‘ConsultationDate’.

len1481296

5/2/2017 3:57:31 AM

You must also provide a short implementation report describing your experiences with thisassignment. You may discuss any of thefollowing: 1. Any two interesting things/procedures you learnt by doing this assignment. 2. Any one requirement of the assignment that was relatively difficult/complex to solve but successfully completed by you. Use the implementation report to demonstrate that you have thought carefully about the issues thatarise when implementing a relationaldatabase.

len1481296

5/2/2017 3:57:23 AM

Microsoft Access databases file containing: 1. Tables with sample data 2. Relationships 3. Queries 4. Integrityconstraints 5. Report (object). A Microsoft Word documentcontaining: 1. Two relations with functional dependencies and demonstration of normalization 2. Implementation report Your document should contain appropriate identification information (your student number, name,unit number, etc.) and should contain the relevant headings for eachsection.

len1481296

5/2/2017 3:57:15 AM

• You must work individually on this assignment. • The model solution to this assignment will be released approximately two (2) weeks after the due date. • Assignments that are submitted after the release of the model solution will receive zero marks. • You must state in your word documentthe details of all materials and sources that you used to complete this assignment. This may be as simple as 'This assignment was completed using only the COIT 20247 unit materials'. • Extension requests (by filling in an online form) should be submitted before the assignment due date. • Before submitting your assignment, review the marking criteria provided on the last page of this document. Ensure that all the criteria are addressed in your submission. • Penalties related to late submission and plagiarism will be applied as per University policy.

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