FIT9132代做、Databases留学生代写、SQL程序语言调试、SQL代做 帮做C/C++编程|帮做Haskell程序
FIT9132 Introduction to Databases
2019 Semester 1
Assignment 1 - Database Design - Monash Hospital (MH)
Monash hospital treats patients who are identified by a unique patient id. When a patient is
admitted to the hospital, the hospital records the patients first and last name, address, date
of birth and emergency contact number (if they are not already on the system). They also
record the date and time of admission. The system needs to maintain a record of all
admissions for a particular patient. When a patient is discharged, the date and time of their
discharge for this admission is recorded.
While in the hospital patients are located in a ward. The ward is identified by a ward code.
Monash Hospital wishes to record the total number of beds in each ward and the number
of currently available (empty) beds. Beds located in a ward are assigned a bed number
within that ward - thus, for example, each ward has a bed number 1. The bedside
telephone number and bed type are also recorded. Beds are classified (their bed type) as
either fixed or adjustable. Not all beds are supplied with a bedside telephone.
During a patient's admission, they may need to be moved from one bed to another,
possibly in a different ward. If this occurs the date and time the patient is assigned to the
new bed/ward are recorded (a history of all such bed assignments during admission is
required).
While in the hospital each patient is assigned one doctor (identified by a doctor id) as their
supervising doctor. A patient's supervising doctor may be in charge of many admissions.
The hospital records each doctor's first and last names and phone number. A doctor may
have one or more specialisations (eg. Orthopaedic, Renal, etc), but not all doctors who
work at the hospital have a specialisation.
During their admission, patients are prescribed procedures as part of their care by doctors.
Procedures consist of tests such as "X-Rays", "Blood Tests" etc, they also include medical
procedures which might be required such as "Shoulder Replacement". A patient may have
procedures prescribed by their supervising doctor or any other doctor working in the
hospital.
Page 1 of 11A procedure is identified by a procedure code. Each procedure has a name (such as
"Wrist X-Ray") and includes a description of what the procedure involves, the time required
for the procedure and the current standard patient cost for this procedure. When a
particular procedure is prescribed during a patient’s admission, the date and time when the
procedure is carried out is also recorded. A particular procedure is completed before any
further procedures are run (two procedures cannot occur simultaneously). Some
procedures, such as blood tests are carried out by technicians, more complex procedure
may require a doctor to perform the procedure.
If a procedure is carried out by a technician the hospital does not record the details of the
technician who completed the procedure.
If a doctor carries out the procedure, the doctor who completes the procedure is recorded
(the doctor who completes the procedure may be different from the doctor who prescribes
it). Even if a team of doctors is involved in the procedure, only one doctor (the doctor in
charge) is recorded as completing the procedure.
Monash Hospital only record the details of a procedure carried out on an admission after
the procedure has been completed.
Not all admissions require a procedure to be carried out.
Procedures may require "extra" items such as syringes or swabs. Each item held in stock
is assigned an item code. The item description, current stock and price are recorded. For
accounting purposes, each item is assigned to a unique cost centre, such as Pharmacy,
Radiography or Patient Aids. A cost centre is identified by a cost centre code and has
recorded the cost centre title and managers name. The quantity of each item used in a
particular procedure is recorded.
Patients are billed for the cost for the procedure itself and also any "extra" items which are
used as part of a procedure. The billed charge is based on the procedure/item cost at the
date and time of the procedure.
Monash Hospital also records details of its nursing staff and their allocation to work in the
wards. A nurse cannot work in (be assigned to) different wards on any given day.
A nurse is identified by a unique numeric nurse id. The hospital also records the nurses
first and last name. The initial date a nurse is assigned to work in a ward is recorded.
Nurses may be moved between wards as staffing requirements change. When a nurse
finishes an allocation with a particular ward the date they finished is also recorded. Within
these changes, a nurse may return to a ward they previously worked in, if they do so, a
new allocation is recorded.
Page 2 of 11REMEMBER you must keep up to date with the Moodle assignment 1 forum where further
clarifications may be posted (this forum is to be treated as your client). Please be careful to
ensure you do not post anything which includes your reasoning, logic or any part of your
work to this forum, doing so violates Monash plagiarism/collusion rules.
You are free to make assumptions if needed however they must align with the details here
and in the assignment forums and must be clearly documented (see the required
submission files).
Page 3 of 11Sample Documents
ADMISSION PROCEDURE CHARGE SHEET
Page 4 of 11NURSE WARD ASSIGNMENT FORM
Page 5 of 11TASKS
Please ENSURE your name and ID are shown on every page of any document you submit. If
a document is a multipage document, such as for the normalisation, please also make sure you
include page numbers on every page.
GIT STORAGE
All working files, as you work on this assignment task, must be stored in GIT and must show a
clear history of development. Your work for this task MUST be saved in your local repo in your
Assignments/Ass1A and Assignments/Ass1B folders and regularly pushed to the FIT GitLab server
to build this history of development.
Moodle Part A Submission: [ 5 marks]
1. Using LucidChart, prepare an INITIAL conceptual model (Entity Relationship Diagram) for
Monash Hospital (MH).
○ For this initial conceptual model, include what you see as identifiers (keys) for each
entity only (other attributes are not required) and all relationships.
○ Surrogate keys must not be added to this model. Connectivity and Participation
for all relationships must be shown on the diagram. Participation must show both
minimum and maximum values (using a single line for 1:1 is not acceptable for this
unit).
This initial conceptual model must be submitted to Moodle as Assignment 1 Part A
by 8 PM Monday of week 6. If this submission is not made by this date you will not be
able to submit Assignment 1 Part B.
Your tutor will provide feedback and guidance based on your submitted initial model which
should be integrated into your continuing work in Part B.
Moodle Part B Submission: [100 marks]
2. Perform normalisation to 3NF for the data depicted in the sample Procedure Charge
Sheet and Nurse Assignment Details.
During normalisation, you must:
○ Not add surrogate keys to the normalisation.
○ You must include all attributes (you must not remove any attribute as derivable)
○ Clearly show UNF, 1NF, 2NF and 3NF.
○ Clearly identify the Primary Key in all relations.
○ Clearly identify the partial and transitive dependencies (if they exist) in all 1NF
relations. You may use a dependency diagram or alternative notation (see the
normalisation tutorial sample solution for a possible alternative representation).
Your attribute names as used in your normalisation and those on your conceptual/logical
models must be consistent i.e. the same name used on each for the same property.
Page 6 of 113. Using LucidChart, prepare a FULL conceptual model (Entity Relationship Diagram) for
Monash Hospital (MH).
○ For this FULL conceptual model, include what you see as identifiers (keys) for each
entity, all required attributes and all relationships. This full model will be based on
your feedback from your Part A submission, the normalisation above and further
reading of the case study. It may be necessary to revise/update this model while
developing your logical model in part 4 below.
○ Surrogate keys must not be added to this model. Participation and connectivity
for all relationships must be shown on the diagram.
4. Based on your final full version of your conceptual model, prepare a logical level design
for the Monash Hospital database.
○ The logical model must be drawn using the Oracle Data Modeler. The information
engineering or Crow’s foot notation must be used in drawing the model.
○ All entities depicted must be in 3NF
○ All attributes must be commented in the database.
○ Sequences must be used to generate numeric primary keys and check clauses
must be applied to attributes where appropriate.
○ Be sure to include the legend as part of your model.
○ Note that your GIT repository must clearly indicate your development history with
multiple commits/pushes as you work on your model. If your model is added to
GIT without a clear development history IT WILL NOT BE MARKED
5. Generate the schema for the database in Oracle Data Modeler and use the schema to
create the database in your Oracle account. The only edit you are permitted to carry out to
the generated schema file is to add header comment/s containing your details (student
name/id), drop sequence commands and the commands to spool/echo your run of the
script.
○ Capture the output of the schema statements using the spool command.
○ Ensure your script includes drop table and sequence statements at the start of the
script.
○ Name the schema file as mh_schema.sql.
Page 7 of 11Submission Requirements
Assignment 1A:
Due: Monday 8th April 2019 (Week 6) 8 PM
The following files are to be submitted and must exist in your FITGitLab server repo:
● A single page pdf file containing your initial version of your conceptual model. Name the
file mh_initial_conceptual.pdf. This file must be created via File - Download As - PDF
from LucidChart (do not use screen capture) and must be able to be accessed with a
development history via GIT. You can create this development history by downloading and
committing/pushing to GIT as you work on your model.
Assignment 1B:
Due: Monday 29th April 2019 (Week 8) 8 PM
The following files are to be submitted and must exist in your FITGitLab server repo:
● A single page pdf file containing your final version of your conceptual model. Name the file
mh_conceptual.pdf. This file must be created via File - Download As - PDF from
LucidChart (do not use screen capture), again must be able to be accessed with a
development history via GIT. .
● A pdf document showing your full normalisation of documents A, B and C showing all
normal forms (UNF, 1NF, 2NF and 3NF). Name the file mh_normalisation.pdf
● A single page pdf file containing the final logical Model you created in Oracle Data Modeller.
Name the file mh_logical.pdf. This pdf must be created via File - Data Modeler - Print
Diagram - To PDF File from within SQL Developer, do not use screen capture.
● A zip file containing your Oracle data modeler project (in zipping these files be sure you
include the .dmd file and the folder of the same name). Name the file mh_oraclemodel.zip.
○ This model must be able to be opened by your marker and contain your full model
otherwise your task 4 will not be marked. For this reason, you should carefully
check that your model is complete - you should take your submission archive, copy it to
a new temporary folder, extract your submission parts, extract your model and ensure it
opens correctly before submission.
● A schema file (CREATE TABLE statements) generated by Oracle Data Modeller. Name the
file mh_schema.sql
● The output from SQL Developer spool command showing the tables have been created.
Name the file mh_schema_output.txt
● A pdf document containing any assumptions you have made in developing the model or
comments your marker should be aware of. Name the file mh_assumptions.pdf
Note that there are seven required files. These files must be zipped into a single zip file named
a1-.zip e.g., a1-xyz123.zip before the assignment due date/time. Submit the
a1-xyz123.zip to Moodle before the due date.
Late submission will incur penalties as outlined in the unit guide.
Page 8 of 11Marking Rubric Part A
Outstanding (Range D - HD) Adequate (Range P - C) Not Adequate (N)
Identified the
required Entities
(1)
● All/most entities
identified.
● All/most keys are
correctly identified.
● Majority of entities
identified.
● Majority of keys are
correctly identified.
● None or few of entities
identified.
● None or few of keys are
correctly identified
Identified the
required
Relationships (1)
● All/most required
relationships identified.
● Majority of required
relationships identified.
● None/few required
relationships identified.
.
Identified correct
Connectivity and
Participation (1)
● All/Most of depicted
relationships
Connectivity and
Participation correctly
identified.
● Majority of depicted
relationships
Connectivity and
Participation correctly
identified.
● None/few of depicted
relationships
Connectivity and
Participation correctly
identified.
Able to correctly
use the required
notation
convention and be
consistent in its
usage. (2)
All notations in the model are
consistent and follow
FIT9132 ERD standards.
Most notations in the model
are consistent and follow
FIT9132 ERD standards.
Few notations in the model
are consistent or follow
FIT9132 ERD standards.
Page 9 of 11Marking Rubric Part B
Outstanding (Range D - HD) Adequate (Range P - C) Not Adequate (N)
Identify the data
requirements to
support an
organisations
operations from the
supplied case study
and expresses
these via a
database
conceptual model.
(50)
All MH operations are
supported.
● Required number of
entities are present
● All/most required
attributes and keys
have been captured
● Surrogate keys have
not been added
● All/most required
relationships have
been captured
● All/most required
cardinality and
participation
constraints have
been captured
Some MH operations are
not supported.
● Majority of
required entities
are present
● Majority of
required attributes
and keys have
been captured
● Surrogate keys
have not been
added
● Majority of
required
relationships have
been captured
● Majority of
required
cardinality and
participation
constraints have
been captured
Many of the MH
operations are not
supported.
● None or few of the
required entities
are present
● None or few of the
required attributes
and keys have
been captured
● Surrogate keys
have been added
● None or few of the
required
relationships have
been captured
● None or few of the
required
cardinality and
participation
constraints have
been captured
Understand and
follow a database
design
methodology. (25)
All/majority of the design
processes have been
correctly followed:
● All/most Normalisation
processes are correct
● Dependency diagrams
have been provided and
match normalisation.
● ER diagram mapped to
logical model with only
minor errors/omissions.
● SQL Developer
Relational model
correctly generated from
the logical model
● Sequences have been
created to provide
numeric primary keys
where required
Some of the design
processes have been
correctly followed:
● Majority of
Normalisation
processes are correct
● Dependency
diagrams have been
provided and match
normalisation in the
majority of situations.
● ER diagram mapped
to logical model with
only a small number
of errors/omissions.
● SQL Developer
Relational model
correctly generated
from the logical model
● Sequences have been
created to provide
numeric primary keys
where required in the
majority of situations
Few of the design
processes have been
correctly followed:
● Significant errors
during the
Normalisation
processes
● Dependency diagrams
not provided or have
major errors
● ER diagram mapped
to logical model with
errors/omissions.
● SQL Developer
Relational model not
correctly generated
from the logical model
● Sequences have not
been created to
provide numeric
primary keys where
required
Page 10 of 11Marking Rubric continued
Outstanding (Range D - HD) Adequate (Range P - C) Not Adequate (N)
Understand and
apply the relational
model principles
into practice. (15)
All relational model
principles have been
followed:
● All/most entities are in
third normal form.
● All/most Primary and
Foreign keys are
correctly identified.
● All/most data integrity
requirements (Entity,
Referential, Domain)
have been correctly
identified.
Most relational model
principles have been
followed:
● Majority of entities are
in third normal form.
● Majority of Primary
and Foreign keys are
correctly identified.
● Majority of data
integrity requirements
(Entity, Referential,
Domain) have been
correctly identified.
Few of the relational
model principles have
been followed:
● None or few of the
entities are in third
normal form.
● None or few of the
Primary and Foreign
keys are correctly
identified.
● None or few of the
data integrity
requirements (Entity,
Referential, Domain)
have been correctly
identified.
Able to generate
and modify a
schema given a
logical model in
SQL Developer. (5)
The DDL script was
executed without errors.
The DDL script was
executed with errors.
Able to correctly
use the required
notation convention
and be consistent in
its usage. (5)
All notations in the model
are consistent.
Some notations in the
model are consistent.
Few notations in the
model are consistent.
Page 11 of 11

热门主题

课程名

mktg2509 csci 2600 38170 lng302 csse3010 phas3226 77938 arch1162 engn4536/engn6536 acx5903 comp151101 phl245 cse12 comp9312 stat3016/6016 phas0038 comp2140 6qqmb312 xjco3011 rest0005 ematm0051 5qqmn219 lubs5062m eee8155 cege0100 eap033 artd1109 mat246 etc3430 ecmm462 mis102 inft6800 ddes9903 comp6521 comp9517 comp3331/9331 comp4337 comp6008 comp9414 bu.231.790.81 man00150m csb352h math1041 eengm4100 isys1002 08 6057cem mktg3504 mthm036 mtrx1701 mth3241 eeee3086 cmp-7038b cmp-7000a ints4010 econ2151 infs5710 fins5516 fin3309 fins5510 gsoe9340 math2007 math2036 soee5010 mark3088 infs3605 elec9714 comp2271 ma214 comp2211 infs3604 600426 sit254 acct3091 bbt405 msin0116 com107/com113 mark5826 sit120 comp9021 eco2101 eeen40700 cs253 ece3114 ecmm447 chns3000 math377 itd102 comp9444 comp(2041|9044) econ0060 econ7230 mgt001371 ecs-323 cs6250 mgdi60012 mdia2012 comm221001 comm5000 ma1008 engl642 econ241 com333 math367 mis201 nbs-7041x meek16104 econ2003 comm1190 mbas902 comp-1027 dpst1091 comp7315 eppd1033 m06 ee3025 msci231 bb113/bbs1063 fc709 comp3425 comp9417 econ42915 cb9101 math1102e chme0017 fc307 mkt60104 5522usst litr1-uc6201.200 ee1102 cosc2803 math39512 omp9727 int2067/int5051 bsb151 mgt253 fc021 babs2202 mis2002s phya21 18-213 cege0012 mdia1002 math38032 mech5125 07 cisc102 mgx3110 cs240 11175 fin3020s eco3420 ictten622 comp9727 cpt111 de114102d mgm320h5s bafi1019 math21112 efim20036 mn-3503 fins5568 110.807 bcpm000028 info6030 bma0092 bcpm0054 math20212 ce335 cs365 cenv6141 ftec5580 math2010 ec3450 comm1170 ecmt1010 csci-ua.0480-003 econ12-200 ib3960 ectb60h3f cs247—assignment tk3163 ics3u ib3j80 comp20008 comp9334 eppd1063 acct2343 cct109 isys1055/3412 math350-real math2014 eec180 stat141b econ2101 msinm014/msing014/msing014b fit2004 comp643 bu1002 cm2030
联系我们
EMail: 99515681@qq.com
QQ: 99515681
留学生作业帮-留学生的知心伴侣!
工作时间:08:00-21:00
python代写
微信客服:codinghelp
站长地图