SlideShare una empresa de Scribd logo
1 de 17
Subject Name Code Credit Hours
Database System COMP 219 3
DATABASE MANAGEMENT SYSTEM
Subject Name Code Credit Hours
Database System COMP 219 3
Introduction :
• Introduction to Database
• Database Systems Vs File Systems
• View of data
• Data Models
• Data base languages
• Transaction Management
• Database systems Structure
• History of Database Systems
• Database Systems Applications
• Entity Relationship Model
Subject Name Code Credit Hours
Database System COMP 219 3
INTRODUCTION
• Data is stored facts.
• Data may be numerical data which may be
integers or floating point numbers, and non-
numerical data such as characters, date and
etc.,
What is Data ?
Subject Name Code Credit Hours
Database System COMP 219 3
Example:
98
89
87
92
phy
chem
maths
biology
The above numbers may be anything:
It may be distance in kms or amount
in rupees or no of days or marks in
each subject etc.,
Subject Name Code Credit Hours
Database System COMP 219 3
What is information ?
Information is RELATED DATA. The data ( information) which is
used by an organisation – a college, a library, a bank, a
manufacturing company – is one of its most valuable resources.
98
89
87
92
phy
chem
maths
biology
Subject Name Code Credit Hours
Database System COMP 219 3What is Database ?
Database is a collection of information organized in such a way that a computer
program can quickly select desired pieces of data.
98
89
87
92
phy
chem
maths
biology
76
87
79
88
phy
chem
maths
biology
91
67
87
77
phy
chem
maths
biology
86
80
79
88
phy
chem
maths
biology
Subject Name Code Credit Hours
Database System COMP 219 3
Database Management System (DBMS)
• DBMS contains information about a particular enterprise
– Collection of interrelated data
– Set of programs to access the data
– An environment that is both convenient and efficient to use
• Database Applications:
– Banking: all transactions
– Airlines: reservations, schedules
– Universities: registration, grades
– Sales: customers, products, purchases
– Online retailers: order tracking, customized recommendations
– Manufacturing: production, inventory, orders, supply chain
– Human resources: employee records, salaries, tax deductions
• Databases touch all aspects of our lives
A collection of programs that enables you to store, modify, and extract information
from a database.
Subject Name Code Credit Hours
Database System COMP 219 3
Database Systems Vs File Systems
• In the early days, database applications were built directly on
top of file systems
• Drawbacks of using file systems to store data:
– Data redundancy and inconsistency
• Multiple file formats, duplication of information in different files
– Difficulty in accessing data
• Need to write a new program to carry out each new task
– Data isolation — multiple files and formats
– Integrity problems
• Integrity constraints (e.g. account balance > 0) become “buried” in
program code rather than being stated explicitly
• Hard to add new constraints or change existing ones
Subject Name Code Credit Hours
Database System COMP 219 3
Database Systems Vs File Systems Cont.
• Drawbacks of using file systems (cont.)
– Atomicity of updates
• Failures may leave database in an inconsistent state with partial updates carried out
• Example: Transfer of funds from one account to another should either complete or not happen
at all
– Concurrent access by multiple users
• Concurrent accessed needed for performance
• Uncontrolled concurrent accesses can lead to inconsistencies
– Example: Two people reading a balance and updating it at the same time
– Security problems
• Hard to provide user access to some, but not all, data
• Database systems offer solutions to all the above problems
Subject Name Code Credit Hours
Database System COMP 219 3
View of data
• Physical level: describes how a record (e.g., customer) is stored.
• Logical level: describes data stored in database, and the relationships
among the data.
type customer = record
customer_id : string;
customer_name : string;
customer_street : string;
customer_city : integer;
end;
(PASCAL CODE)
• View level: application programs hide details of data types. Views can also
hide information (such as an employee’s salary) for security purposes.
Data Abstraction:
Subject Name Code Credit Hours
Database System COMP 219 3
View of data Contd.
An architecture for a database system:
Subject Name Code Credit Hours
Database System COMP 219 3
Instances and Schemas
• Similar to types and variables in programming languages
• Schema – the logical structure of the database
– Example: The database consists of information about a set of customers and accounts
and the relationship between them)
– Analogous to type information of a variable in a program
– Physical schema: database design at the physical level
– Logical schema: database design at the logical level
• Instance – the actual content of the database at a particular point in time
– Analogous to the value of a variable
• Physical Data Independence – the ability to modify the physical schema without
changing the logical schema
– Applications depend on the logical schema
– In general, the interfaces between the various levels and components should be well
defined so that changes in some parts do not seriously influence others.
Subject Name Code Credit Hours
Database System COMP 219 3
Instances and Schemas
• DB Schema Diagram for a Company:
Employee:
Eno Ename Salary Address
Subject Name Code Credit Hours
Database System COMP 219 3
Instances and Schemas
» DB Schema Diagram for a Company:
Department:
Dno Dname Dlocation
Project:
Pno Pname Hours
Subject Name Code Credit Hours
Database System COMP 219 3
Instances and Schemas
• Instance Example:
Eno Ename Salary Address
1
2
3
A
B
C
10,000
20,000
30,000
First street
Second street
Third street
Subject Name Code Credit Hours
Database System COMP 219 3
Data Independence
Three schema architecture for a database system:
View1 View2 View n
Conceptual Schema
Internal Schema
Disk
External schema
Conceptual
mapping
Internal/Physical
level
Subject Name Code Credit Hours
Database System COMP 219 3
Data Independence
• Two types of Data Independence
• Logical Data Independence
Capacity to change the conceptual schema without
having to change external schema
• Physical Data Independence
Capacity to change the Internal schema without having
to change external schema

Más contenido relacionado

La actualidad más candente

Relational database revised
Relational database revisedRelational database revised
Relational database revised
mnodalo
 
Database Design
Database DesignDatabase Design
Database Design
learnt
 
23. Advanced Datatypes and New Application in DBMS
23. Advanced Datatypes and New Application in DBMS23. Advanced Datatypes and New Application in DBMS
23. Advanced Datatypes and New Application in DBMS
koolkampus
 

La actualidad más candente (15)

ADVANCE DATABASE MANAGEMENT SYSTEM CONCEPTS & ARCHITECTURE by vikas jagtap
ADVANCE DATABASE MANAGEMENT SYSTEM CONCEPTS & ARCHITECTURE by vikas jagtapADVANCE DATABASE MANAGEMENT SYSTEM CONCEPTS & ARCHITECTURE by vikas jagtap
ADVANCE DATABASE MANAGEMENT SYSTEM CONCEPTS & ARCHITECTURE by vikas jagtap
 
Rdbms
RdbmsRdbms
Rdbms
 
Unit 02 dbms
Unit 02 dbmsUnit 02 dbms
Unit 02 dbms
 
Dbms
DbmsDbms
Dbms
 
Week 1
Week 1Week 1
Week 1
 
Database management system chapter1
Database management system chapter1Database management system chapter1
Database management system chapter1
 
Relational database revised
Relational database revisedRelational database revised
Relational database revised
 
Relational Database Management System
Relational Database Management SystemRelational Database Management System
Relational Database Management System
 
Database Design
Database DesignDatabase Design
Database Design
 
Database management system chapter13
Database management system chapter13Database management system chapter13
Database management system chapter13
 
23. Advanced Datatypes and New Application in DBMS
23. Advanced Datatypes and New Application in DBMS23. Advanced Datatypes and New Application in DBMS
23. Advanced Datatypes and New Application in DBMS
 
Mc0077 – advanced database systems
Mc0077 – advanced database systemsMc0077 – advanced database systems
Mc0077 – advanced database systems
 
An extended database reverse engineering – a key for database forensic invest...
An extended database reverse engineering – a key for database forensic invest...An extended database reverse engineering – a key for database forensic invest...
An extended database reverse engineering – a key for database forensic invest...
 
Relational Model in dbms & sql database
Relational Model in dbms & sql databaseRelational Model in dbms & sql database
Relational Model in dbms & sql database
 
RDBMS.
RDBMS.RDBMS.
RDBMS.
 

Similar a Dbms chap i

Similar a Dbms chap i (20)

Unit 1: Introduction to DBMS Unit 1 Complete
Unit 1: Introduction to DBMS Unit 1 CompleteUnit 1: Introduction to DBMS Unit 1 Complete
Unit 1: Introduction to DBMS Unit 1 Complete
 
INTRODUCTION OF DATA BASE
INTRODUCTION OF DATA BASEINTRODUCTION OF DATA BASE
INTRODUCTION OF DATA BASE
 
Unit1 dbms
Unit1 dbmsUnit1 dbms
Unit1 dbms
 
Intro.pptx
Intro.pptxIntro.pptx
Intro.pptx
 
Beginning Of DBMS (data base)
Beginning Of DBMS (data base)Beginning Of DBMS (data base)
Beginning Of DBMS (data base)
 
dbms intro
  dbms intro  dbms intro
dbms intro
 
PANKAJ SINGH-061.pptx
PANKAJ SINGH-061.pptxPANKAJ SINGH-061.pptx
PANKAJ SINGH-061.pptx
 
(Dbms) class 1 & 2 (Presentation)
(Dbms) class 1 & 2 (Presentation)(Dbms) class 1 & 2 (Presentation)
(Dbms) class 1 & 2 (Presentation)
 
Information Management
Information ManagementInformation Management
Information Management
 
DBMS introduction and functionality of of dbms
DBMS introduction and functionality of  of dbmsDBMS introduction and functionality of  of dbms
DBMS introduction and functionality of of dbms
 
dbms ppt.pptx database management system
dbms ppt.pptx database management systemdbms ppt.pptx database management system
dbms ppt.pptx database management system
 
Database Systems - Lecture Week 1
Database Systems - Lecture Week 1Database Systems - Lecture Week 1
Database Systems - Lecture Week 1
 
Ch01
Ch01Ch01
Ch01
 
Database & Database Users
Database & Database UsersDatabase & Database Users
Database & Database Users
 
INTRODUCTION TO RDBMS
INTRODUCTION TO RDBMSINTRODUCTION TO RDBMS
INTRODUCTION TO RDBMS
 
Unit3rd
Unit3rdUnit3rd
Unit3rd
 
Database Lecture Notes
Database Lecture NotesDatabase Lecture Notes
Database Lecture Notes
 
sequel for biginners.pptx
sequel for biginners.pptxsequel for biginners.pptx
sequel for biginners.pptx
 
Database :Introduction to Database System
Database :Introduction to Database SystemDatabase :Introduction to Database System
Database :Introduction to Database System
 
Dbms
DbmsDbms
Dbms
 

Más de Bala Ganesh

Flip flop& RAM ROM
Flip flop& RAM ROMFlip flop& RAM ROM
Flip flop& RAM ROM
Bala Ganesh
 
Chap iii-Logic Gates
Chap iii-Logic GatesChap iii-Logic Gates
Chap iii-Logic Gates
Bala Ganesh
 
Chap ii.BCD code,Gray code
Chap ii.BCD code,Gray codeChap ii.BCD code,Gray code
Chap ii.BCD code,Gray code
Bala Ganesh
 
Software engineering Questions and Answers
Software engineering Questions and AnswersSoftware engineering Questions and Answers
Software engineering Questions and Answers
Bala Ganesh
 
Software testing
Software testingSoftware testing
Software testing
Bala Ganesh
 
Software Requirements
Software RequirementsSoftware Requirements
Software Requirements
Bala Ganesh
 
Comp 111chp iv vi
Comp 111chp iv viComp 111chp iv vi
Comp 111chp iv vi
Bala Ganesh
 
Comp 107cep iii,iv,v
Comp 107cep iii,iv,vComp 107cep iii,iv,v
Comp 107cep iii,iv,v
Bala Ganesh
 
Wdf 222chp iii vi
Wdf 222chp iii viWdf 222chp iii vi
Wdf 222chp iii vi
Bala Ganesh
 

Más de Bala Ganesh (20)

sfdfds
sfdfdssfdfds
sfdfds
 
Flip flop& RAM ROM
Flip flop& RAM ROMFlip flop& RAM ROM
Flip flop& RAM ROM
 
karnaugh maps
karnaugh mapskarnaugh maps
karnaugh maps
 
Chap iii-Logic Gates
Chap iii-Logic GatesChap iii-Logic Gates
Chap iii-Logic Gates
 
Chap ii.BCD code,Gray code
Chap ii.BCD code,Gray codeChap ii.BCD code,Gray code
Chap ii.BCD code,Gray code
 
DEL-244Chep i
DEL-244Chep iDEL-244Chep i
DEL-244Chep i
 
Software engineering Questions and Answers
Software engineering Questions and AnswersSoftware engineering Questions and Answers
Software engineering Questions and Answers
 
Software testing
Software testingSoftware testing
Software testing
 
Design
DesignDesign
Design
 
Comp 107 cep 8
Comp 107 cep 8Comp 107 cep 8
Comp 107 cep 8
 
Comp 107 cep 7
Comp 107 cep 7Comp 107 cep 7
Comp 107 cep 7
 
Cocomo model
Cocomo modelCocomo model
Cocomo model
 
Software Requirements
Software RequirementsSoftware Requirements
Software Requirements
 
Comp107 chep6
Comp107 chep6Comp107 chep6
Comp107 chep6
 
Comp 111chp iv vi
Comp 111chp iv viComp 111chp iv vi
Comp 111chp iv vi
 
Comp 111 cep ii
Comp 111 cep iiComp 111 cep ii
Comp 111 cep ii
 
Comp 107cep iii,iv,v
Comp 107cep iii,iv,vComp 107cep iii,iv,v
Comp 107cep iii,iv,v
 
Wdf 222chp iii vi
Wdf 222chp iii viWdf 222chp iii vi
Wdf 222chp iii vi
 
Wdf222 cep ii
Wdf222 cep iiWdf222 cep ii
Wdf222 cep ii
 
Wdf22chp 1
Wdf22chp 1Wdf22chp 1
Wdf22chp 1
 

Último

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Último (20)

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
80 ĐỀ THI THỬ TUYỂN SINH TIẾNG ANH VÀO 10 SỞ GD – ĐT THÀNH PHỐ HỒ CHÍ MINH NĂ...
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024FSB Advising Checklist - Orientation 2024
FSB Advising Checklist - Orientation 2024
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
Beyond_Borders_Understanding_Anime_and_Manga_Fandom_A_Comprehensive_Audience_...
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Spatium Project Simulation student brief
Spatium Project Simulation student briefSpatium Project Simulation student brief
Spatium Project Simulation student brief
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
REMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptxREMIFENTANIL: An Ultra short acting opioid.pptx
REMIFENTANIL: An Ultra short acting opioid.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 

Dbms chap i

  • 1. Subject Name Code Credit Hours Database System COMP 219 3 DATABASE MANAGEMENT SYSTEM
  • 2. Subject Name Code Credit Hours Database System COMP 219 3 Introduction : • Introduction to Database • Database Systems Vs File Systems • View of data • Data Models • Data base languages • Transaction Management • Database systems Structure • History of Database Systems • Database Systems Applications • Entity Relationship Model
  • 3. Subject Name Code Credit Hours Database System COMP 219 3 INTRODUCTION • Data is stored facts. • Data may be numerical data which may be integers or floating point numbers, and non- numerical data such as characters, date and etc., What is Data ?
  • 4. Subject Name Code Credit Hours Database System COMP 219 3 Example: 98 89 87 92 phy chem maths biology The above numbers may be anything: It may be distance in kms or amount in rupees or no of days or marks in each subject etc.,
  • 5. Subject Name Code Credit Hours Database System COMP 219 3 What is information ? Information is RELATED DATA. The data ( information) which is used by an organisation – a college, a library, a bank, a manufacturing company – is one of its most valuable resources. 98 89 87 92 phy chem maths biology
  • 6. Subject Name Code Credit Hours Database System COMP 219 3What is Database ? Database is a collection of information organized in such a way that a computer program can quickly select desired pieces of data. 98 89 87 92 phy chem maths biology 76 87 79 88 phy chem maths biology 91 67 87 77 phy chem maths biology 86 80 79 88 phy chem maths biology
  • 7. Subject Name Code Credit Hours Database System COMP 219 3 Database Management System (DBMS) • DBMS contains information about a particular enterprise – Collection of interrelated data – Set of programs to access the data – An environment that is both convenient and efficient to use • Database Applications: – Banking: all transactions – Airlines: reservations, schedules – Universities: registration, grades – Sales: customers, products, purchases – Online retailers: order tracking, customized recommendations – Manufacturing: production, inventory, orders, supply chain – Human resources: employee records, salaries, tax deductions • Databases touch all aspects of our lives A collection of programs that enables you to store, modify, and extract information from a database.
  • 8. Subject Name Code Credit Hours Database System COMP 219 3 Database Systems Vs File Systems • In the early days, database applications were built directly on top of file systems • Drawbacks of using file systems to store data: – Data redundancy and inconsistency • Multiple file formats, duplication of information in different files – Difficulty in accessing data • Need to write a new program to carry out each new task – Data isolation — multiple files and formats – Integrity problems • Integrity constraints (e.g. account balance > 0) become “buried” in program code rather than being stated explicitly • Hard to add new constraints or change existing ones
  • 9. Subject Name Code Credit Hours Database System COMP 219 3 Database Systems Vs File Systems Cont. • Drawbacks of using file systems (cont.) – Atomicity of updates • Failures may leave database in an inconsistent state with partial updates carried out • Example: Transfer of funds from one account to another should either complete or not happen at all – Concurrent access by multiple users • Concurrent accessed needed for performance • Uncontrolled concurrent accesses can lead to inconsistencies – Example: Two people reading a balance and updating it at the same time – Security problems • Hard to provide user access to some, but not all, data • Database systems offer solutions to all the above problems
  • 10. Subject Name Code Credit Hours Database System COMP 219 3 View of data • Physical level: describes how a record (e.g., customer) is stored. • Logical level: describes data stored in database, and the relationships among the data. type customer = record customer_id : string; customer_name : string; customer_street : string; customer_city : integer; end; (PASCAL CODE) • View level: application programs hide details of data types. Views can also hide information (such as an employee’s salary) for security purposes. Data Abstraction:
  • 11. Subject Name Code Credit Hours Database System COMP 219 3 View of data Contd. An architecture for a database system:
  • 12. Subject Name Code Credit Hours Database System COMP 219 3 Instances and Schemas • Similar to types and variables in programming languages • Schema – the logical structure of the database – Example: The database consists of information about a set of customers and accounts and the relationship between them) – Analogous to type information of a variable in a program – Physical schema: database design at the physical level – Logical schema: database design at the logical level • Instance – the actual content of the database at a particular point in time – Analogous to the value of a variable • Physical Data Independence – the ability to modify the physical schema without changing the logical schema – Applications depend on the logical schema – In general, the interfaces between the various levels and components should be well defined so that changes in some parts do not seriously influence others.
  • 13. Subject Name Code Credit Hours Database System COMP 219 3 Instances and Schemas • DB Schema Diagram for a Company: Employee: Eno Ename Salary Address
  • 14. Subject Name Code Credit Hours Database System COMP 219 3 Instances and Schemas » DB Schema Diagram for a Company: Department: Dno Dname Dlocation Project: Pno Pname Hours
  • 15. Subject Name Code Credit Hours Database System COMP 219 3 Instances and Schemas • Instance Example: Eno Ename Salary Address 1 2 3 A B C 10,000 20,000 30,000 First street Second street Third street
  • 16. Subject Name Code Credit Hours Database System COMP 219 3 Data Independence Three schema architecture for a database system: View1 View2 View n Conceptual Schema Internal Schema Disk External schema Conceptual mapping Internal/Physical level
  • 17. Subject Name Code Credit Hours Database System COMP 219 3 Data Independence • Two types of Data Independence • Logical Data Independence Capacity to change the conceptual schema without having to change external schema • Physical Data Independence Capacity to change the Internal schema without having to change external schema