SlideShare a Scribd company logo
1 of 41
Download to read offline
1 | P a g e
2 | P a g e
Project Report
Chapter 1: Introduction
 Introduction
Health of citizen is the wealth of Nation. Hospital Management
database System is a computer base software system automate
the hospital management system. It is designed to improve the
quality and management in areas of clinical process analysis.
The Project Hospital Management Database System
include the registration of patients, Doctors, Nurses,
Receptionists and Rooms storing their detail into System by using
database. The software has facility to give the unique id to
Patient, Doctor, Nurse, Receptionist and room and store their
details.
Hospital Management Database System have User Friendly
interface. This system also has the Queries option.
3 | P a g e
 Problem: Storage time accuracy efficiency
1. This system is manual.
2. The information is very difficult to retrieve for example to
find the patient history.
3. Manually data entry has a chance of inaccuracy.
4. Manual data entry in inefficient
5. Wastage of time
 Solution
1. It will be the Computer base system
2. Data entry become more efficient
3. Reduction Of errors
4. No Wastage of time
4 | P a g e
Chapter 2: Data Requirement
 Entity Classes
In this project there are 5 entity classes. The detail is as under
1. DOCTOR
Doctor class stores the data of doctors who diagnose the patients.
2. NURSE
Nurse class stores the data of nurses who treat the patients.
3. PATIENT
Patient class stores the data of patient who take appointment from
Reception.
4. RECEPTIONIST
Receptionist class stores the data of receptionist who interact with
patient.
5. ROOM
Room class stores the record which patients are admitted.
 Attribute
1. DOCTOR: Doctor class have 4 attributes
I. Dr_ID
II. Dr_Name
III. Dr_Specialization
IV. Dr_Gender
2. NURSE: Nurse class have 4 attributes
5 | P a g e
I. N_Name
II. N_Id
III. N_Add (Address)
IV. N_Email
3. PATIENT: Patient class have 7 attributes
I. P_ID
II. P_Name
III. P_Gender (Address)
IV. P_Entry Date
V. P_Exit Date
VI. N_ID
VII. R_ID
4. RECEPTIONIST: Receptionist class have 4 attributes
I. R_ID
II. R_Name
III. R_Gender
IV. R_Add (Addrss)
5. ROOM: Room class have 4 attributes
I. R_Number
II. R_Serial
III. R_Entry Date
IV. R_Exit Date
 Business Rule
1. One receptionist deal many patients and one patient interact with
only one receptionist.
6 | P a g e
2. One doctor diagnoses only one patient and one patient can only
have one doctor checked up at a time.
3. One can admitted in many rooms and one room can have
many patients.
4. One nurse treat the many patient and one patient treated by
only one nurse.
 Types And Degree Of Relationship
There are following relations
1. VISIT
Type of Relationship: One-To-Many (1:M)
Degree of Relationship: Binary
2. DIAGNOSE
Type of Relationship: One-To-One (1:1)
Degree of Relationship: Binary
7 | P a g e
3. USE
Type of Relationship: Many-To-Many (M:N)
Degree of Relationship: Binary
4. TREAT
Type of Relationship: One-To-Many (1:M)
Degree of Relationship: Binary
8 | P a g e
Chapter 3: Data Modeling
 ERD
 EERD
9 | P a g e
Chapter 4: Logical Data Model
 Represent Entity Classes
Following are the entity classes and there tables
1. DOCTOR: (Dr_ID, Dr_Name, Dr_Specialization, Dr_Gender)
2. NURSE: (N_ID, N_NAME, N_ADD, N_EMAIL ID )
10 | P a g e
3. PATIENT: (P_ID, P_NAME, P_GENDER, P_ENTRY DATE, P_EXIT
DATE )
4. RECEPTIONIST: (R_ID, R_NAME, R_GENDER, R_ADDRESS)
11 | P a g e
5. ROOM: (R_ID, R_SERIAL, R_ENTRY DATE, R_EXIT DATE)
 Represent Relationship
Following are the relations in this system
1. VISIT
Type of Relationship: One-To-Many (1:M)
Degree of Relationship: Binary
Solution: Solution of this relationship is that take the primary key
of RECEPTIONIST table in PATIENT table as foreign key.
12 | P a g e
2. DIAGNOSE
Type of Relationship: One-To-One (1:1)
Degree of Relationship: Binary
Solution: Solution of this relationship is that take the primary key
of DOCTOR table in PATIENT table as foreign key or vice versa.
13 | P a g e
3. USE
Type of Relationship: Many-To-Many (M:N)
Degree of Relationship: Binary
Solution: Solution of this relationship is that create the separate
table and take the primary keys of both tables (ROOM and
PATIENT) in Separate table as composite primary key.
14 | P a g e
4. TREAT
Type of Relationship: One-To-Many (1:M)
Degree of Relationship: Binary
Solution: Solution of this relationship is that take the primary key
of NURSE table in PATIENT table as foreign key.
15 | P a g e
 Normalization
There are following tables for normalization
1. DOCTOR
16 | P a g e
I. First Normal Form (1NF): DOCTOR table has no repeating group so
this table is in 1NF.
II. Second Normal Form (2NF): There is no partial dependency because
DOCTOR table has no composite primary key. So this table is already in
2NF.
III. Third Normal Form (3NF): There is no transitive dependency so this
table is in 3NF.
2. NURSE
I. First Normal Form (1NF): NURSE table has no repeating group so this
table is in 1NF.
II. Second Normal Form (2NF): There is no partial dependency because
NURSE table has no composite primary key. So this table is already in
2NF.
III. Third Normal Form (3NF): There is no transitive dependency so this
table is in 3NF.
17 | P a g e
3. PATIENT
I. First Normal Form (1NF): PATIENT table has no repeating group so
this table is in 1NF.
II. Second Normal Form (2NF): There is no partial dependency because
PATIENT table has no composite primary key. So this table is already in
2NF.
III. Third Normal Form (3NF): There is no transitive dependency so this
table is in 3NF.
4. RESEPTIONIST
18 | P a g e
I. First Normal Form (1NF): RECEPTIONIST table has no repeating
group so this table is in 1NF.
II. Second Normal Form (2NF): There is no partial dependency because
RECEPTIONIST table has no composite primary key. So this table is
already in 2NF.
III. Third Normal Form (3NF): There is no transitive dependency so this
table is in 3NF.
5. ROOM
I. First Normal Form (1NF): ROOM table has no repeating group so this
table is in 1NF.
II. Second Normal Form (2NF): There is no partial dependency because
ROOM table has no composite primary key. So this table is already in
2NF.
III. Third Normal Form (3NF): There is no transitive dependency so this
table is in 3NF.
19 | P a g e
Chapter 5: Implementation
 Creation Of Tables
There are 5 tables created in MS Access
20 | P a g e
 Relationships(Access)
Complete Relationship Diagram
21 | P a g e
Logical Data Model
22 | P a g e
 Creation Queries
21 Queries were created in MS Access
23 | P a g e
 Creation Of Reports
20 reports were created in MS Access.
24 | P a g e
 Creation Of Forms
The following 35 form were created while main menu form has
following options.
1. Data entry
2. Queries
3. Reports
25 | P a g e
Appendix
 User Manual
MAUN MENU and Entry Data
First of all open the HMDS (Hospital Management Database
System) then HMDS will show the MAIN MENU plate form that
given bellow. Then press the button of Entry Data
After press the button of Data Entry you can see the buttons of
Doctor Form, Nurse Form, Patient Form, Receptionist form
and Room Form.
26 | P a g e
Press the buttons Doctor Form, Nurse Form, Patient Form,
Receptionist form and Room Form, you can see the forms
respectively that are givens bellow.
27 | P a g e
28 | P a g e
29 | P a g e
Go to Main Menu and press the button Queries. It will show the
Queries Buttons of Doctor Queries, Nurse Queries, Patient
Queries, Receptionist Queries and Room Queries
Press the buttons Doctor Queries, Nurse Queries, Patient
Queries, Receptionist Queries and Room Queries, you can see
the related Queries Button respectively that are givens bellow.
30 | P a g e
31 | P a g e
32 | P a g e
Go to Main Menu and press the button Reports. It will show the
Report Buttons of Doctor Report, Doctor Queries Report,
Nurse Report, Nurse Queries Report, Patient Report,
Patient Queries Report, Receptionist Report, Receptionist
Queries Report, Room Report and Room Queries Report
33 | P a g e
Press The Buttons Doctor Report, Nurse Report, Patient
Report, Receptionist Report, Room Report and you can see
the related Report Form respectively that are givens bellow.
34 | P a g e
35 | P a g e
36 | P a g e
37 | P a g e
38 | P a g e
Press the buttons Doctor Queries Report, Nurse Queries
Report, Patient Queries Report , Receptionist Queries
Report, Room Queries Report and you can see the related
Query Report Buttons respectively that are givens bellow.
39 | P a g e
40 | P a g e
41 | P a g e

More Related Content

What's hot

Hospital management system project
Hospital management system projectHospital management system project
Hospital management system projectHimani Chopra
 
Railway management system, database mini project
Railway management system, database mini projectRailway management system, database mini project
Railway management system, database mini projectshashank reddy
 
HOSPITAL MANAGEMENT SYSTEM ANDROID
HOSPITAL MANAGEMENT SYSTEM ANDROIDHOSPITAL MANAGEMENT SYSTEM ANDROID
HOSPITAL MANAGEMENT SYSTEM ANDROIDFoysal Mahamud Elias
 
Hospital Management system Database design
Hospital Management system Database designHospital Management system Database design
Hospital Management system Database designElias Dinsa
 
A mini project on designing a DATABASE for Library management system using mySQL
A mini project on designing a DATABASE for Library management system using mySQLA mini project on designing a DATABASE for Library management system using mySQL
A mini project on designing a DATABASE for Library management system using mySQLsvrohith 9
 
Bank Database using MySQL
Bank Database using MySQL Bank Database using MySQL
Bank Database using MySQL Paras
 
Doubly Linked List
Doubly Linked ListDoubly Linked List
Doubly Linked ListNinad Mankar
 
Hospital management system(database)
Hospital management system(database)Hospital management system(database)
Hospital management system(database)Iftikhar Ahmad
 
Pharmacy management system project report
Pharmacy management system project reportPharmacy management system project report
Pharmacy management system project reportDipta Roy
 
Library Management system Database queries
Library Management system Database queriesLibrary Management system Database queries
Library Management system Database queriesreshmajohney
 
Types Of Keys in DBMS
Types Of Keys in DBMSTypes Of Keys in DBMS
Types Of Keys in DBMSPadamNepal1
 
Data Structure and Algorithms Linked List
Data Structure and Algorithms Linked ListData Structure and Algorithms Linked List
Data Structure and Algorithms Linked ListManishPrajapati78
 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management SystemRANJIT SINGH
 
online blood bank system design
online blood bank system designonline blood bank system design
online blood bank system designRohit Jawale
 

What's hot (20)

stack & queue
stack & queuestack & queue
stack & queue
 
Hospital management system project
Hospital management system projectHospital management system project
Hospital management system project
 
Railway management system, database mini project
Railway management system, database mini projectRailway management system, database mini project
Railway management system, database mini project
 
HOSPITAL MANAGEMENT SYSTEM ANDROID
HOSPITAL MANAGEMENT SYSTEM ANDROIDHOSPITAL MANAGEMENT SYSTEM ANDROID
HOSPITAL MANAGEMENT SYSTEM ANDROID
 
Hospital Management system Database design
Hospital Management system Database designHospital Management system Database design
Hospital Management system Database design
 
A mini project on designing a DATABASE for Library management system using mySQL
A mini project on designing a DATABASE for Library management system using mySQLA mini project on designing a DATABASE for Library management system using mySQL
A mini project on designing a DATABASE for Library management system using mySQL
 
Bank Database using MySQL
Bank Database using MySQL Bank Database using MySQL
Bank Database using MySQL
 
Doubly Linked List
Doubly Linked ListDoubly Linked List
Doubly Linked List
 
Atm System
Atm SystemAtm System
Atm System
 
Hospital management system(database)
Hospital management system(database)Hospital management system(database)
Hospital management system(database)
 
Pharmacy management system project report
Pharmacy management system project reportPharmacy management system project report
Pharmacy management system project report
 
Library Management system Database queries
Library Management system Database queriesLibrary Management system Database queries
Library Management system Database queries
 
Types Of Keys in DBMS
Types Of Keys in DBMSTypes Of Keys in DBMS
Types Of Keys in DBMS
 
Np cooks theorem
Np cooks theoremNp cooks theorem
Np cooks theorem
 
Merge sort algorithm
Merge sort algorithmMerge sort algorithm
Merge sort algorithm
 
Data Structure and Algorithms Linked List
Data Structure and Algorithms Linked ListData Structure and Algorithms Linked List
Data Structure and Algorithms Linked List
 
Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
 
Bank Management System
Bank Management SystemBank Management System
Bank Management System
 
Timestamp protocols
Timestamp protocolsTimestamp protocols
Timestamp protocols
 
online blood bank system design
online blood bank system designonline blood bank system design
online blood bank system design
 

Similar to Hospital DB System

Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management SystemRashmikaJava
 
Patient Intake to Patient Follow-Up WorkflowView more »E.docx
Patient Intake to Patient Follow-Up WorkflowView more »E.docxPatient Intake to Patient Follow-Up WorkflowView more »E.docx
Patient Intake to Patient Follow-Up WorkflowView more »E.docxdanhaley45372
 
Menu Driven Hospital Interface Desciption
Menu Driven Hospital Interface DesciptionMenu Driven Hospital Interface Desciption
Menu Driven Hospital Interface DesciptionAkshay Sharma
 
Hospital database management_system_sql
Hospital database management_system_sqlHospital database management_system_sql
Hospital database management_system_sqlSumedhMasal
 
Hospital database management_system_sql
Hospital database management_system_sqlHospital database management_system_sql
Hospital database management_system_sqlSumedhMasal
 
Viva presentation v3
Viva presentation v3Viva presentation v3
Viva presentation v3Abdul Rahman
 
Will Emerson pt EmpressedBP-15660O2 – 92 on 2LRR- 34.docx
Will Emerson pt EmpressedBP-15660O2 – 92 on 2LRR- 34.docxWill Emerson pt EmpressedBP-15660O2 – 92 on 2LRR- 34.docx
Will Emerson pt EmpressedBP-15660O2 – 92 on 2LRR- 34.docxadolphoyonker
 
We have spent a lot of time this semester talking about various as.docx
We have spent a lot of time this semester talking about various as.docxWe have spent a lot of time this semester talking about various as.docx
We have spent a lot of time this semester talking about various as.docxmelbruce90096
 
Ehr training 03_history_(2013_07_14)
Ehr training 03_history_(2013_07_14)Ehr training 03_history_(2013_07_14)
Ehr training 03_history_(2013_07_14)mpryor4452
 
Drip rate calculator
Drip rate calculator Drip rate calculator
Drip rate calculator debbiegkatz
 
TQM Charting Practice.pdf
TQM Charting Practice.pdfTQM Charting Practice.pdf
TQM Charting Practice.pdfsdfghj21
 
Must know Secrets For Easier EHR Documentation
Must know Secrets For Easier EHR DocumentationMust know Secrets For Easier EHR Documentation
Must know Secrets For Easier EHR DocumentationCureMD
 
Irish Attitudes to Nurses and Midwives
Irish Attitudes to Nurses and MidwivesIrish Attitudes to Nurses and Midwives
Irish Attitudes to Nurses and MidwivesAmarach Research
 
DEADLINE FRIDAY 352021 BY 0800 PM ESTINSTRUCTIONS Res
DEADLINE FRIDAY 352021 BY 0800 PM ESTINSTRUCTIONS ResDEADLINE FRIDAY 352021 BY 0800 PM ESTINSTRUCTIONS Res
DEADLINE FRIDAY 352021 BY 0800 PM ESTINSTRUCTIONS ResLinaCovington707
 
Systems Analysis and Design for Post Treatment Healthcare App
Systems Analysis and Design for Post Treatment Healthcare AppSystems Analysis and Design for Post Treatment Healthcare App
Systems Analysis and Design for Post Treatment Healthcare AppSnehal Datta
 
Hospital erp system
Hospital erp systemHospital erp system
Hospital erp systemAsma queen
 
documentation_and_reporting.ppt
documentation_and_reporting.pptdocumentation_and_reporting.ppt
documentation_and_reporting.pptHgjUy7
 

Similar to Hospital DB System (20)

Hospital Management System
Hospital Management SystemHospital Management System
Hospital Management System
 
Patient Intake to Patient Follow-Up WorkflowView more »E.docx
Patient Intake to Patient Follow-Up WorkflowView more »E.docxPatient Intake to Patient Follow-Up WorkflowView more »E.docx
Patient Intake to Patient Follow-Up WorkflowView more »E.docx
 
Menu Driven Hospital Interface Desciption
Menu Driven Hospital Interface DesciptionMenu Driven Hospital Interface Desciption
Menu Driven Hospital Interface Desciption
 
Hospital database management_system_sql
Hospital database management_system_sqlHospital database management_system_sql
Hospital database management_system_sql
 
Hospital database management_system_sql
Hospital database management_system_sqlHospital database management_system_sql
Hospital database management_system_sql
 
Viva presentation v3
Viva presentation v3Viva presentation v3
Viva presentation v3
 
Will Emerson pt EmpressedBP-15660O2 – 92 on 2LRR- 34.docx
Will Emerson pt EmpressedBP-15660O2 – 92 on 2LRR- 34.docxWill Emerson pt EmpressedBP-15660O2 – 92 on 2LRR- 34.docx
Will Emerson pt EmpressedBP-15660O2 – 92 on 2LRR- 34.docx
 
A Next Generation EHR for Primary Care: How we learned to stop worrying and l...
A Next Generation EHR for Primary Care: How we learned to stop worrying and l...A Next Generation EHR for Primary Care: How we learned to stop worrying and l...
A Next Generation EHR for Primary Care: How we learned to stop worrying and l...
 
We have spent a lot of time this semester talking about various as.docx
We have spent a lot of time this semester talking about various as.docxWe have spent a lot of time this semester talking about various as.docx
We have spent a lot of time this semester talking about various as.docx
 
Ehr training 03_history_(2013_07_14)
Ehr training 03_history_(2013_07_14)Ehr training 03_history_(2013_07_14)
Ehr training 03_history_(2013_07_14)
 
Drip rate calculator
Drip rate calculator Drip rate calculator
Drip rate calculator
 
TQM Charting Practice.pdf
TQM Charting Practice.pdfTQM Charting Practice.pdf
TQM Charting Practice.pdf
 
Must know Secrets For Easier EHR Documentation
Must know Secrets For Easier EHR DocumentationMust know Secrets For Easier EHR Documentation
Must know Secrets For Easier EHR Documentation
 
Irish Attitudes to Nurses and Midwives
Irish Attitudes to Nurses and MidwivesIrish Attitudes to Nurses and Midwives
Irish Attitudes to Nurses and Midwives
 
DEADLINE FRIDAY 352021 BY 0800 PM ESTINSTRUCTIONS Res
DEADLINE FRIDAY 352021 BY 0800 PM ESTINSTRUCTIONS ResDEADLINE FRIDAY 352021 BY 0800 PM ESTINSTRUCTIONS Res
DEADLINE FRIDAY 352021 BY 0800 PM ESTINSTRUCTIONS Res
 
Systems Analysis and Design for Post Treatment Healthcare App
Systems Analysis and Design for Post Treatment Healthcare AppSystems Analysis and Design for Post Treatment Healthcare App
Systems Analysis and Design for Post Treatment Healthcare App
 
Hospital erp system
Hospital erp systemHospital erp system
Hospital erp system
 
Can Clinicians Create High-Quality Databases?
Can Clinicians Create High-Quality Databases?Can Clinicians Create High-Quality Databases?
Can Clinicians Create High-Quality Databases?
 
Website Use Documentation
Website Use DocumentationWebsite Use Documentation
Website Use Documentation
 
documentation_and_reporting.ppt
documentation_and_reporting.pptdocumentation_and_reporting.ppt
documentation_and_reporting.ppt
 

Recently uploaded

Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxDr.Ibrahim Hassaan
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsanshu789521
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxJiesonDelaCerna
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitolTechU
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxthorishapillay1
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17Celine George
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceSamikshaHamane
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPCeline George
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxOH TEIK BIN
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...jaredbarbolino94
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for BeginnersSabitha Banu
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatYousafMalik24
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupJonathanParaisoCruz
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 

Recently uploaded (20)

Gas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptxGas measurement O2,Co2,& ph) 04/2024.pptx
Gas measurement O2,Co2,& ph) 04/2024.pptx
 
Presiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha electionsPresiding Officer Training module 2024 lok sabha elections
Presiding Officer Training module 2024 lok sabha elections
 
CELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptxCELL CYCLE Division Science 8 quarter IV.pptx
CELL CYCLE Division Science 8 quarter IV.pptx
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
Capitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptxCapitol Tech U Doctoral Presentation - April 2024.pptx
Capitol Tech U Doctoral Presentation - April 2024.pptx
 
Proudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptxProudly South Africa powerpoint Thorisha.pptx
Proudly South Africa powerpoint Thorisha.pptx
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)ESSENTIAL of (CS/IT/IS) class 06 (database)
ESSENTIAL of (CS/IT/IS) class 06 (database)
 
How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17How to Configure Email Server in Odoo 17
How to Configure Email Server in Odoo 17
 
Roles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in PharmacovigilanceRoles & Responsibilities in Pharmacovigilance
Roles & Responsibilities in Pharmacovigilance
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
What is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERPWhat is Model Inheritance in Odoo 17 ERP
What is Model Inheritance in Odoo 17 ERP
 
Solving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptxSolving Puzzles Benefits Everyone (English).pptx
Solving Puzzles Benefits Everyone (English).pptx
 
Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...Historical philosophical, theoretical, and legal foundations of special and i...
Historical philosophical, theoretical, and legal foundations of special and i...
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Full Stack Web Development Course for Beginners
Full Stack Web Development Course  for BeginnersFull Stack Web Development Course  for Beginners
Full Stack Web Development Course for Beginners
 
Earth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice greatEarth Day Presentation wow hello nice great
Earth Day Presentation wow hello nice great
 
MARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized GroupMARGINALIZATION (Different learners in Marginalized Group
MARGINALIZATION (Different learners in Marginalized Group
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 

Hospital DB System

  • 1. 1 | P a g e
  • 2. 2 | P a g e Project Report Chapter 1: Introduction  Introduction Health of citizen is the wealth of Nation. Hospital Management database System is a computer base software system automate the hospital management system. It is designed to improve the quality and management in areas of clinical process analysis. The Project Hospital Management Database System include the registration of patients, Doctors, Nurses, Receptionists and Rooms storing their detail into System by using database. The software has facility to give the unique id to Patient, Doctor, Nurse, Receptionist and room and store their details. Hospital Management Database System have User Friendly interface. This system also has the Queries option.
  • 3. 3 | P a g e  Problem: Storage time accuracy efficiency 1. This system is manual. 2. The information is very difficult to retrieve for example to find the patient history. 3. Manually data entry has a chance of inaccuracy. 4. Manual data entry in inefficient 5. Wastage of time  Solution 1. It will be the Computer base system 2. Data entry become more efficient 3. Reduction Of errors 4. No Wastage of time
  • 4. 4 | P a g e Chapter 2: Data Requirement  Entity Classes In this project there are 5 entity classes. The detail is as under 1. DOCTOR Doctor class stores the data of doctors who diagnose the patients. 2. NURSE Nurse class stores the data of nurses who treat the patients. 3. PATIENT Patient class stores the data of patient who take appointment from Reception. 4. RECEPTIONIST Receptionist class stores the data of receptionist who interact with patient. 5. ROOM Room class stores the record which patients are admitted.  Attribute 1. DOCTOR: Doctor class have 4 attributes I. Dr_ID II. Dr_Name III. Dr_Specialization IV. Dr_Gender 2. NURSE: Nurse class have 4 attributes
  • 5. 5 | P a g e I. N_Name II. N_Id III. N_Add (Address) IV. N_Email 3. PATIENT: Patient class have 7 attributes I. P_ID II. P_Name III. P_Gender (Address) IV. P_Entry Date V. P_Exit Date VI. N_ID VII. R_ID 4. RECEPTIONIST: Receptionist class have 4 attributes I. R_ID II. R_Name III. R_Gender IV. R_Add (Addrss) 5. ROOM: Room class have 4 attributes I. R_Number II. R_Serial III. R_Entry Date IV. R_Exit Date  Business Rule 1. One receptionist deal many patients and one patient interact with only one receptionist.
  • 6. 6 | P a g e 2. One doctor diagnoses only one patient and one patient can only have one doctor checked up at a time. 3. One can admitted in many rooms and one room can have many patients. 4. One nurse treat the many patient and one patient treated by only one nurse.  Types And Degree Of Relationship There are following relations 1. VISIT Type of Relationship: One-To-Many (1:M) Degree of Relationship: Binary 2. DIAGNOSE Type of Relationship: One-To-One (1:1) Degree of Relationship: Binary
  • 7. 7 | P a g e 3. USE Type of Relationship: Many-To-Many (M:N) Degree of Relationship: Binary 4. TREAT Type of Relationship: One-To-Many (1:M) Degree of Relationship: Binary
  • 8. 8 | P a g e Chapter 3: Data Modeling  ERD  EERD
  • 9. 9 | P a g e Chapter 4: Logical Data Model  Represent Entity Classes Following are the entity classes and there tables 1. DOCTOR: (Dr_ID, Dr_Name, Dr_Specialization, Dr_Gender) 2. NURSE: (N_ID, N_NAME, N_ADD, N_EMAIL ID )
  • 10. 10 | P a g e 3. PATIENT: (P_ID, P_NAME, P_GENDER, P_ENTRY DATE, P_EXIT DATE ) 4. RECEPTIONIST: (R_ID, R_NAME, R_GENDER, R_ADDRESS)
  • 11. 11 | P a g e 5. ROOM: (R_ID, R_SERIAL, R_ENTRY DATE, R_EXIT DATE)  Represent Relationship Following are the relations in this system 1. VISIT Type of Relationship: One-To-Many (1:M) Degree of Relationship: Binary Solution: Solution of this relationship is that take the primary key of RECEPTIONIST table in PATIENT table as foreign key.
  • 12. 12 | P a g e 2. DIAGNOSE Type of Relationship: One-To-One (1:1) Degree of Relationship: Binary Solution: Solution of this relationship is that take the primary key of DOCTOR table in PATIENT table as foreign key or vice versa.
  • 13. 13 | P a g e 3. USE Type of Relationship: Many-To-Many (M:N) Degree of Relationship: Binary Solution: Solution of this relationship is that create the separate table and take the primary keys of both tables (ROOM and PATIENT) in Separate table as composite primary key.
  • 14. 14 | P a g e 4. TREAT Type of Relationship: One-To-Many (1:M) Degree of Relationship: Binary Solution: Solution of this relationship is that take the primary key of NURSE table in PATIENT table as foreign key.
  • 15. 15 | P a g e  Normalization There are following tables for normalization 1. DOCTOR
  • 16. 16 | P a g e I. First Normal Form (1NF): DOCTOR table has no repeating group so this table is in 1NF. II. Second Normal Form (2NF): There is no partial dependency because DOCTOR table has no composite primary key. So this table is already in 2NF. III. Third Normal Form (3NF): There is no transitive dependency so this table is in 3NF. 2. NURSE I. First Normal Form (1NF): NURSE table has no repeating group so this table is in 1NF. II. Second Normal Form (2NF): There is no partial dependency because NURSE table has no composite primary key. So this table is already in 2NF. III. Third Normal Form (3NF): There is no transitive dependency so this table is in 3NF.
  • 17. 17 | P a g e 3. PATIENT I. First Normal Form (1NF): PATIENT table has no repeating group so this table is in 1NF. II. Second Normal Form (2NF): There is no partial dependency because PATIENT table has no composite primary key. So this table is already in 2NF. III. Third Normal Form (3NF): There is no transitive dependency so this table is in 3NF. 4. RESEPTIONIST
  • 18. 18 | P a g e I. First Normal Form (1NF): RECEPTIONIST table has no repeating group so this table is in 1NF. II. Second Normal Form (2NF): There is no partial dependency because RECEPTIONIST table has no composite primary key. So this table is already in 2NF. III. Third Normal Form (3NF): There is no transitive dependency so this table is in 3NF. 5. ROOM I. First Normal Form (1NF): ROOM table has no repeating group so this table is in 1NF. II. Second Normal Form (2NF): There is no partial dependency because ROOM table has no composite primary key. So this table is already in 2NF. III. Third Normal Form (3NF): There is no transitive dependency so this table is in 3NF.
  • 19. 19 | P a g e Chapter 5: Implementation  Creation Of Tables There are 5 tables created in MS Access
  • 20. 20 | P a g e  Relationships(Access) Complete Relationship Diagram
  • 21. 21 | P a g e Logical Data Model
  • 22. 22 | P a g e  Creation Queries 21 Queries were created in MS Access
  • 23. 23 | P a g e  Creation Of Reports 20 reports were created in MS Access.
  • 24. 24 | P a g e  Creation Of Forms The following 35 form were created while main menu form has following options. 1. Data entry 2. Queries 3. Reports
  • 25. 25 | P a g e Appendix  User Manual MAUN MENU and Entry Data First of all open the HMDS (Hospital Management Database System) then HMDS will show the MAIN MENU plate form that given bellow. Then press the button of Entry Data After press the button of Data Entry you can see the buttons of Doctor Form, Nurse Form, Patient Form, Receptionist form and Room Form.
  • 26. 26 | P a g e Press the buttons Doctor Form, Nurse Form, Patient Form, Receptionist form and Room Form, you can see the forms respectively that are givens bellow.
  • 27. 27 | P a g e
  • 28. 28 | P a g e
  • 29. 29 | P a g e Go to Main Menu and press the button Queries. It will show the Queries Buttons of Doctor Queries, Nurse Queries, Patient Queries, Receptionist Queries and Room Queries Press the buttons Doctor Queries, Nurse Queries, Patient Queries, Receptionist Queries and Room Queries, you can see the related Queries Button respectively that are givens bellow.
  • 30. 30 | P a g e
  • 31. 31 | P a g e
  • 32. 32 | P a g e Go to Main Menu and press the button Reports. It will show the Report Buttons of Doctor Report, Doctor Queries Report, Nurse Report, Nurse Queries Report, Patient Report, Patient Queries Report, Receptionist Report, Receptionist Queries Report, Room Report and Room Queries Report
  • 33. 33 | P a g e Press The Buttons Doctor Report, Nurse Report, Patient Report, Receptionist Report, Room Report and you can see the related Report Form respectively that are givens bellow.
  • 34. 34 | P a g e
  • 35. 35 | P a g e
  • 36. 36 | P a g e
  • 37. 37 | P a g e
  • 38. 38 | P a g e Press the buttons Doctor Queries Report, Nurse Queries Report, Patient Queries Report , Receptionist Queries Report, Room Queries Report and you can see the related Query Report Buttons respectively that are givens bellow.
  • 39. 39 | P a g e
  • 40. 40 | P a g e
  • 41. 41 | P a g e