SlideShare a Scribd company logo
CS 507
GRADE ENTRY SYSTEM (GES)
For Mahardika Institute of Technology
Junior High School Department
Prepared by:
Mr. Abubakar Hiyang
Mr. Gilbert Flores
Ms. Claire Ong
Mr. Armando So III
The Grade Entry System of the Mahardika Institute of Technology,
Inc. High school Department to help school faculty in storing, computing
and recording of grades of the students.
The System has the following functions:
• Provide a database for recording and grading report
• Speed up the generation of student grades
•Systematize the recording of grades information
INTRODUCTION
GES LOGICAL DESIGN
STUDINFO
ID
StudID
FullName
LastName
FirstName
MiddleName
Grade
Sec
GRADE
ID
SchoolYear
Grading
Grade
Sec
Subject
Teacher
Name
Gr
Gd
StudID
SCHOOLYEAR
ID
SchoolYear
SUBJECT
ID
SUBJECT
TEACHER
ID
Teacher
GES ERD
OBTAINS
REFERS
SUBMITS
BELONGS
GES PHYSICAL DESIGN
STUDINFO
Field Type
ID (PK) AutoNumber
StudID String
FullName String
LastName String
FirstName String
MiddleName String
Grade Number
Sec String
GRADE
Field Type
ID (PK) AutoNumber
SchoolYear (FK) Number
Grading Number
Grade Number
Sec String
Subject (FK) Number
Teacher (FK) Number
Name String
Gr Number
Gd String
StudID Number
SCHOOLYEAR
Field Type
ID (PK) Number
SchoolYear String
SUBJECT
Field Type
ID (PK) Number
SUBJECT String
TEACHER
Field Type
ID (PK) Number
Teacher String
USER
Field Type
UserID (PK) Number
LastName String
FirstName String
MiddleName String
Designation String
UserName String
Password String
GES Physical Design
Architecture
• Database is stored in a single MS Access file.
• Database is stored on a single computer on a LAN and shared peer-to-peer to
other users.
• Administrator manages student info, sections, teachers, and subjects.
• Teachers manage grades of students.
• At the end of each period, the adviser can produce grading reports of his/her
class .
GES VIEWS AND REPORTS
Login Screen
System Main Interface
Register Interface
Grade Entry Interface
User Manager Interface
Grading Sheet Report
Certificate of Grades Report
Report Card
GES SCHEMAS AND FUNCTIONAL
DEPENDENCIES
SUBJECT
SUBJECT(ID, Subject)
ID  Subject
SCHOOLYEAR
SCHOOLYEAR (ID, SchoolYear)
ID  SchoolYear
TEACHER
TEACHER (ID, Teacher)
ID  Teacher
STUDINFO
STUDINFO (ID, StudID, FullName,LastName, FirstName, MiddleName, Grade, Sec, SchoolYear)
ID  StudID, FullName
StudID  ID, FullName
ID, SchoolYear  StudID, FullName, Grade, Sec
FirstName, MiddleName, LastName  FullName
Candidate key:
ID SchoolYear
Non-Primary Keys:
Grade, Sec
Grade and Sec both are only partially functional dependent to the candidate key, therefore the
relation cannot be in 2NF.
Only satisfies 1NF.
STUDINFO (ID, StudID, FullName,LastName, FirstName, MiddleName, Grade, Sec, SchoolYear)
ID  StudID, FullName, FirstName, MiddleName, LastName
ID, SchoolYear  StudID, FullName, LastName, FirstName, MiddleName, Grade, Sec
Anomalies in STUDINFO Relation:
• Anomaly #1: Redundant Attributes
FullName is composite having combined values of FirstName, MiddleName and LastName.
Fix: Remove redundant attributes FirstName, MiddleName and LastName.
STUDINFO (ID, StudID, FullName, Grade, Sec, SchoolYear)
• Anomaly #2: Insertion anomaly
Adding new SchoolYear will duplicate values of other attributes like StudID and FullName.
Fix: Split STUDINFO.
STUDINFO (ID, StudID, FullName, Grade, Sec)
MASTERLIST (SchoolYear, StudID, SecID)
• Anomaly #3: Insertion anomaly
Adding new Sec for each student will duplicate values of other attributes.
Sec and Grade has no functional dependency in new STUDINFO relation.
Fix: Split STUDINFO
STUDINFO (ID, StudID, FullName) - 3NF
SECTIONS (SecID, Grade, Sec) – 3NF
GRADES
GRADE (ID, SchoolYear, Grading, Grade, Sec, Subject, Teacher, Name, Gr, Gd, StudID)
ID  SchoolYear, Grading, Grade, Subject, Teacher, Name, Gr, Gd, StudID
StudID  Name
SchoolYear, Grading, Subject, StudID  Gr, Gd, Teacher
StudID, SchoolYear  Grade, Sec
StudID, Grade, Sec  SchoolYear
SchoolYear, Grading, Sec, Subject  Teacher
Teacher, SchoolYear, Grading  Subject
Anomalies in GRADE Relation:
• Anomaly #1: Redundant Attributes
Extra attributes from StudInfo used in Grade relation are redundant, since StudID is already
a primary key in StudInfo.
Fix: Remove redundant attributes.
GRADE (ID, SchoolYear, Grading, Subject, Teacher, Gr, Gd, StudID)
• Anomaly #2: Inefficient data type for Grading / Update anomaly
The Grading attribute uses string values.
Fix: Split and modify GRADE relation.
GRADE (ID, Period, Subject, Teacher, Gr, Gd, StudID)
PERIOD (PeriodID, GradingPeriod)
• Anomaly #3: Redundant primary key
Fix: Replace the single attribute ID as primary key and just use StudID, SchoolYear and
Period as composite key.
GRADE (SchoolYear, StudID, Period, Subject, Teacher, Gr, Gd)
PERIOD (PeriodID, GradingPeriod)
USER
USER (UserID, LastName, FirstName, MiddleName, Designation, UserName, Password)
UserID  LastName, FirstName, MIddleName, Designation, UserName, Password
UserName  UserID, LastName, FirstName, MiddleName, Designation, Password
Anomalies in USER Relation:
• Anomaly #1: Inefficient data type for Designation/ Update anomaly
The Designation attribute uses string values.
Fix: Split and modify USER relation.
USER (UserID, LastName, FirstName, MiddleName, DesignationID, UserName, Password)
DESIGNATIONS (DesignationID, Designation)
GES Modified Relation Schemas
STUDINFO (ID, StudID, FullName)
SECTIONS (SecID, Grade, Sec)
MASTERLIST (SchoolYear, StudID, SecID)
SUBJECT(ID, Subject)
SCHOOLYEAR (ID, SchoolYear)
TEACHER (ID, Teacher)
GRADE (SchoolYear, StudID, Period, Subject, Teacher, Gr, Gd)
PERIOD (PeriodID, GradingPeriod)
USER (UserID, LastName, FirstName, MiddleName, DesignationID, UserName, Password)
DESIGNATIONS (DesignationID, Designation)
STUDINFO
ID (PK)
StudID
FullName
SECTIONS
SecID (PK)
Grade
Sec
MASTERLIST
SchoolYear (FK)
StudID (FK)
SecID
SUBJECT
ID (PK)
SUBJECT
SCHOOLYEAR
ID (PK)
SchoolYear
TEACHER
ID (PK)
Teacher
GRADE
SchoolYear (FK)
StudID (FK)
Period (FK)
Subject (FK)
Teacher (FK)
Gr
Gd
PERIOD
PeriodID (PK)
GradingPeriod
USER
UserID (PK)
LastName
FirstName
MiddlleName
DesignationID (FK)
UserName
Password
DESIGNATIONS
DesignationID (PK)
Designation
GES Modified ERD
Enrolled in
Obtains
Submitted
by
Assigned
to
Prepared
for
Submitted
for
Obtained
during
Grouped by Designates
GES Modified Physical Design
STUDINFO
Field Type
ID (PK) AutoNumber
StudID String
FullName String
SECTIONS
Field Type
SecID (PK) AutoNumber
Grade Number
Sec String
MASTERLIST
Field Type
SchoolYear (FK) Number
StudID (FK) Number
SecID Number
SUBJECT
Field Type
ID (PK) Number
SUBJECT String
SCHOOLYEAR
Field Type
ID (PK) Number
SchoolYear String
TEACHER
Field Type
ID (PK) Number
Teacher String
GRADE
Field Type
SchoolYear (FK) Number
StudID (FK) Number
Period (FK) Number
Subject (FK) Number
Teacher (FK) Number
Gr Number
Gd String
PERIOD
Field Type
PeriodID (PK) Number
GradingPeriod String
USER
Field Type
UserID (PK) Number
LastName String
FirstName String
MiddlleName String
DesignationID (FK) Number
UserName String
Password String
DESIGNATIONS
Field Type
DesignationID (PK) Autonumber
Designation String

More Related Content

PPT
Data dictionary
PPTX
Normalization Practice case study.pptx
PPTX
Sql clauses by Manan Pasricha
PPT
10. XML in DBMS
PDF
Normalization in DBMS
PDF
Chapter 4 Structured Query Language
PPSX
Frequent itemset mining methods
PPTX
Normalization in DBMS
Data dictionary
Normalization Practice case study.pptx
Sql clauses by Manan Pasricha
10. XML in DBMS
Normalization in DBMS
Chapter 4 Structured Query Language
Frequent itemset mining methods
Normalization in DBMS

What's hot (20)

PPTX
Boyer moore algorithm
PPTX
Date time function in Database
PDF
Lecture4 big data technology foundations
PDF
5. Basic Structure of SQL Queries.pdf
PPTX
Learn Normalization in simple language
PDF
PDF
Introduction to text classification using naive bayes
PPT
Data mining techniques unit 1
PPTX
Query processing and Query Optimization
DOCX
CSC 433 Sample normalization SQL Question
PPT
PPTX
Binary Heap Tree, Data Structure
PPTX
database Normalization
PDF
Sql tutorial
PPTX
ER Modeling and Introduction to RDBMS
PPT
Using the set operators
PPTX
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
PPTX
Group By, Having Clause and Order By clause
PPT
Recursion tree method
Boyer moore algorithm
Date time function in Database
Lecture4 big data technology foundations
5. Basic Structure of SQL Queries.pdf
Learn Normalization in simple language
Introduction to text classification using naive bayes
Data mining techniques unit 1
Query processing and Query Optimization
CSC 433 Sample normalization SQL Question
Binary Heap Tree, Data Structure
database Normalization
Sql tutorial
ER Modeling and Introduction to RDBMS
Using the set operators
DML, DDL, DCL ,DRL/DQL and TCL Statements in SQL with Examples
Group By, Having Clause and Order By clause
Recursion tree method
Ad

Similar to database normalization case study (20)

PPTX
Student management system(stms)
PPTX
DBMS CIA.pptx
PDF
Data Clustering in Education for Students
PPTX
student database management system
PPTX
EC Database System
PDF
ERModel1.pdf
PPT
Abrod studies
PDF
Unit i b(er model)
PPTX
Student Management System
PPTX
Student faculty document sharing | SFDS | Ajay Balava
PPTX
Pivot INSPECT® Indiana's Formative Assessment Solution
PPTX
Data Retrival
DOCX
Course plan computer graphics
DOC
CMSC198 summer2012 syllabus
PDF
Exams evaluate students. Who’s evaluating exams? Data-Informed Exam Design
PPTX
GATE Exam preparation strategy
PPT
Required Online Orientation: A Predictor of Success?
PDF
Copy Of Univ
PDF
PDF
Student management system(stms)
DBMS CIA.pptx
Data Clustering in Education for Students
student database management system
EC Database System
ERModel1.pdf
Abrod studies
Unit i b(er model)
Student Management System
Student faculty document sharing | SFDS | Ajay Balava
Pivot INSPECT® Indiana's Formative Assessment Solution
Data Retrival
Course plan computer graphics
CMSC198 summer2012 syllabus
Exams evaluate students. Who’s evaluating exams? Data-Informed Exam Design
GATE Exam preparation strategy
Required Online Orientation: A Predictor of Success?
Copy Of Univ
Ad

More from i i (15)

DOCX
Bouncing circle
 
DOCX
0-1 KNAPSACK PROBLEM
 
DOCX
sequential and combinational circuits exam
 
PPTX
hypothesis testing overview
 
PPTX
x86 architecture
 
PDF
boolean algebra exercises
 
DOC
cpbricks context diagram
 
DOC
cpbricks project document
 
DOC
cpbricks manual
 
PPTX
imperative programming language, java, android
 
PPTX
shortest job first
 
PPTX
designing reports
 
DOCX
bnf of c switch statement
 
PPTX
shell and merge sort
 
PPTX
adders/subtractors, multiplexers, intro to ISA
 
Bouncing circle
 
0-1 KNAPSACK PROBLEM
 
sequential and combinational circuits exam
 
hypothesis testing overview
 
x86 architecture
 
boolean algebra exercises
 
cpbricks context diagram
 
cpbricks project document
 
cpbricks manual
 
imperative programming language, java, android
 
shortest job first
 
designing reports
 
bnf of c switch statement
 
shell and merge sort
 
adders/subtractors, multiplexers, intro to ISA
 

Recently uploaded (20)

PDF
medical staffing services at VALiNTRY
PDF
Design an Analysis of Algorithms I-SECS-1021-03
PDF
AI in Product Development-omnex systems
PDF
PTS Company Brochure 2025 (1).pdf.......
PPTX
Essential Infomation Tech presentation.pptx
PDF
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
PDF
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
PDF
System and Network Administration Chapter 2
PPTX
history of c programming in notes for students .pptx
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
PDF
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
PDF
Softaken Excel to vCard Converter Software.pdf
PDF
Which alternative to Crystal Reports is best for small or large businesses.pdf
PPTX
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
PDF
Design an Analysis of Algorithms II-SECS-1021-03
PDF
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
PDF
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
PDF
2025 Textile ERP Trends: SAP, Odoo & Oracle
PDF
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool
medical staffing services at VALiNTRY
Design an Analysis of Algorithms I-SECS-1021-03
AI in Product Development-omnex systems
PTS Company Brochure 2025 (1).pdf.......
Essential Infomation Tech presentation.pptx
Audit Checklist Design Aligning with ISO, IATF, and Industry Standards — Omne...
EN-Survey-Report-SAP-LeanIX-EA-Insights-2025.pdf
System and Network Administration Chapter 2
history of c programming in notes for students .pptx
Adobe Illustrator 28.6 Crack My Vision of Vector Design
Flood Susceptibility Mapping Using Image-Based 2D-CNN Deep Learnin. Overview ...
Addressing The Cult of Project Management Tools-Why Disconnected Work is Hold...
Softaken Excel to vCard Converter Software.pdf
Which alternative to Crystal Reports is best for small or large businesses.pdf
Agentic AI Use Case- Contract Lifecycle Management (CLM).pptx
Design an Analysis of Algorithms II-SECS-1021-03
Adobe Premiere Pro 2025 (v24.5.0.057) Crack free
Why TechBuilder is the Future of Pickup and Delivery App Development (1).pdf
2025 Textile ERP Trends: SAP, Odoo & Oracle
Claude Code: Everyone is a 10x Developer - A Comprehensive AI-Powered CLI Tool

database normalization case study

  • 1. CS 507 GRADE ENTRY SYSTEM (GES) For Mahardika Institute of Technology Junior High School Department Prepared by: Mr. Abubakar Hiyang Mr. Gilbert Flores Ms. Claire Ong Mr. Armando So III
  • 2. The Grade Entry System of the Mahardika Institute of Technology, Inc. High school Department to help school faculty in storing, computing and recording of grades of the students. The System has the following functions: • Provide a database for recording and grading report • Speed up the generation of student grades •Systematize the recording of grades information INTRODUCTION
  • 6. STUDINFO Field Type ID (PK) AutoNumber StudID String FullName String LastName String FirstName String MiddleName String Grade Number Sec String GRADE Field Type ID (PK) AutoNumber SchoolYear (FK) Number Grading Number Grade Number Sec String Subject (FK) Number Teacher (FK) Number Name String Gr Number Gd String StudID Number SCHOOLYEAR Field Type ID (PK) Number SchoolYear String SUBJECT Field Type ID (PK) Number SUBJECT String TEACHER Field Type ID (PK) Number Teacher String USER Field Type UserID (PK) Number LastName String FirstName String MiddleName String Designation String UserName String Password String GES Physical Design
  • 7. Architecture • Database is stored in a single MS Access file. • Database is stored on a single computer on a LAN and shared peer-to-peer to other users. • Administrator manages student info, sections, teachers, and subjects. • Teachers manage grades of students. • At the end of each period, the adviser can produce grading reports of his/her class .
  • 8. GES VIEWS AND REPORTS
  • 17. GES SCHEMAS AND FUNCTIONAL DEPENDENCIES
  • 18. SUBJECT SUBJECT(ID, Subject) ID  Subject SCHOOLYEAR SCHOOLYEAR (ID, SchoolYear) ID  SchoolYear TEACHER TEACHER (ID, Teacher) ID  Teacher
  • 19. STUDINFO STUDINFO (ID, StudID, FullName,LastName, FirstName, MiddleName, Grade, Sec, SchoolYear) ID  StudID, FullName StudID  ID, FullName ID, SchoolYear  StudID, FullName, Grade, Sec FirstName, MiddleName, LastName  FullName
  • 20. Candidate key: ID SchoolYear Non-Primary Keys: Grade, Sec Grade and Sec both are only partially functional dependent to the candidate key, therefore the relation cannot be in 2NF. Only satisfies 1NF. STUDINFO (ID, StudID, FullName,LastName, FirstName, MiddleName, Grade, Sec, SchoolYear) ID  StudID, FullName, FirstName, MiddleName, LastName ID, SchoolYear  StudID, FullName, LastName, FirstName, MiddleName, Grade, Sec
  • 21. Anomalies in STUDINFO Relation: • Anomaly #1: Redundant Attributes FullName is composite having combined values of FirstName, MiddleName and LastName. Fix: Remove redundant attributes FirstName, MiddleName and LastName. STUDINFO (ID, StudID, FullName, Grade, Sec, SchoolYear) • Anomaly #2: Insertion anomaly Adding new SchoolYear will duplicate values of other attributes like StudID and FullName. Fix: Split STUDINFO. STUDINFO (ID, StudID, FullName, Grade, Sec) MASTERLIST (SchoolYear, StudID, SecID) • Anomaly #3: Insertion anomaly Adding new Sec for each student will duplicate values of other attributes. Sec and Grade has no functional dependency in new STUDINFO relation. Fix: Split STUDINFO STUDINFO (ID, StudID, FullName) - 3NF SECTIONS (SecID, Grade, Sec) – 3NF
  • 22. GRADES GRADE (ID, SchoolYear, Grading, Grade, Sec, Subject, Teacher, Name, Gr, Gd, StudID) ID  SchoolYear, Grading, Grade, Subject, Teacher, Name, Gr, Gd, StudID StudID  Name SchoolYear, Grading, Subject, StudID  Gr, Gd, Teacher StudID, SchoolYear  Grade, Sec StudID, Grade, Sec  SchoolYear SchoolYear, Grading, Sec, Subject  Teacher Teacher, SchoolYear, Grading  Subject
  • 23. Anomalies in GRADE Relation: • Anomaly #1: Redundant Attributes Extra attributes from StudInfo used in Grade relation are redundant, since StudID is already a primary key in StudInfo. Fix: Remove redundant attributes. GRADE (ID, SchoolYear, Grading, Subject, Teacher, Gr, Gd, StudID) • Anomaly #2: Inefficient data type for Grading / Update anomaly The Grading attribute uses string values. Fix: Split and modify GRADE relation. GRADE (ID, Period, Subject, Teacher, Gr, Gd, StudID) PERIOD (PeriodID, GradingPeriod) • Anomaly #3: Redundant primary key Fix: Replace the single attribute ID as primary key and just use StudID, SchoolYear and Period as composite key. GRADE (SchoolYear, StudID, Period, Subject, Teacher, Gr, Gd) PERIOD (PeriodID, GradingPeriod)
  • 24. USER USER (UserID, LastName, FirstName, MiddleName, Designation, UserName, Password) UserID  LastName, FirstName, MIddleName, Designation, UserName, Password UserName  UserID, LastName, FirstName, MiddleName, Designation, Password
  • 25. Anomalies in USER Relation: • Anomaly #1: Inefficient data type for Designation/ Update anomaly The Designation attribute uses string values. Fix: Split and modify USER relation. USER (UserID, LastName, FirstName, MiddleName, DesignationID, UserName, Password) DESIGNATIONS (DesignationID, Designation)
  • 26. GES Modified Relation Schemas STUDINFO (ID, StudID, FullName) SECTIONS (SecID, Grade, Sec) MASTERLIST (SchoolYear, StudID, SecID) SUBJECT(ID, Subject) SCHOOLYEAR (ID, SchoolYear) TEACHER (ID, Teacher) GRADE (SchoolYear, StudID, Period, Subject, Teacher, Gr, Gd) PERIOD (PeriodID, GradingPeriod) USER (UserID, LastName, FirstName, MiddleName, DesignationID, UserName, Password) DESIGNATIONS (DesignationID, Designation)
  • 27. STUDINFO ID (PK) StudID FullName SECTIONS SecID (PK) Grade Sec MASTERLIST SchoolYear (FK) StudID (FK) SecID SUBJECT ID (PK) SUBJECT SCHOOLYEAR ID (PK) SchoolYear TEACHER ID (PK) Teacher GRADE SchoolYear (FK) StudID (FK) Period (FK) Subject (FK) Teacher (FK) Gr Gd PERIOD PeriodID (PK) GradingPeriod USER UserID (PK) LastName FirstName MiddlleName DesignationID (FK) UserName Password DESIGNATIONS DesignationID (PK) Designation GES Modified ERD Enrolled in Obtains Submitted by Assigned to Prepared for Submitted for Obtained during Grouped by Designates
  • 28. GES Modified Physical Design STUDINFO Field Type ID (PK) AutoNumber StudID String FullName String SECTIONS Field Type SecID (PK) AutoNumber Grade Number Sec String MASTERLIST Field Type SchoolYear (FK) Number StudID (FK) Number SecID Number SUBJECT Field Type ID (PK) Number SUBJECT String SCHOOLYEAR Field Type ID (PK) Number SchoolYear String TEACHER Field Type ID (PK) Number Teacher String GRADE Field Type SchoolYear (FK) Number StudID (FK) Number Period (FK) Number Subject (FK) Number Teacher (FK) Number Gr Number Gd String PERIOD Field Type PeriodID (PK) Number GradingPeriod String USER Field Type UserID (PK) Number LastName String FirstName String MiddlleName String DesignationID (FK) Number UserName String Password String DESIGNATIONS Field Type DesignationID (PK) Autonumber Designation String