Normalization 1
Normalization 1
Presented by
G.MURUGAN B.Tech(CSE),ME(SWE),
INTRODUCTION
• DATA BASE
• EXAMPLES OF DATA BASE
• DATA BASE MANAGEMENT SYSTEMS
• APPLICATION AREAS DBMS
• NORMALIZATION
• PURPOSE OF NORMALIZATION
• NOMALIZATION FORMS
DATA BASE- The collection of interrelated data organized
meaningfully for a specific purpose is called database.
EXAMPLES OF DATABASE-
• The database in a college may contain the particulars of
students.
• Staffs
• Books in the library
• Marks of students, etc.,
DATABASE MANAGEMENT SYSTEMS- Database
management system consists of a collection of interrelated data
and set of programs to access that data.
APPLICATION AREAS DBMS
• Banking and financial services, Tourism, ATM, Transport etc.,
Normalization
• Example
Student(stuid,stuname,profid,profname,grade)
• Attributes stuid and profid are the identification key.
• Attribute student name is functionally dependent on attributes.
profid(profid->profname)
stuid(stuid->stuname)
• Attribute grade is fully functional dependent on stuid and
profid
Stuid Stuname Profid Profname Grade
1 Arun 3 Govind 5
2 Raja 2 Venkatram 4
3 Babu 1 Moorthy 6
After 2NF