Download as pptx, pdf, or txt
Download as pptx, pdf, or txt
You are on page 1of 19

Database system

architecture and
Data
Dependencies
By: Aisha Batool
Outline
• The purpose and origin of the three-level database architecture.
• The contents of the external, conceptual, and internal levels.
• The purpose of the external/conceptual and the conceptual/internal mappings.
• The meaning of logical and physical data independence.
• The distinction between a Data Definition Language (DDL) and a Data Manipulation Language
(DML).
• Classification of data models.
• The purpose and importance of conceptual modeling.
• The typical functions and services that a DBMS should provide.
• The function and importance of the system catalog.
• All users should be able to access
same data but have a different
Objectives of customized view

Three Level • A user’s view is immune to changes


made in other views
Architecture
• Users should not need to know
physical database storage details
• DBA should be able to change database
storage structures without affecting the
users’ views

Objectives of • Internal structure of database should be


Three Level unaffected by changes to physical
aspects of storage
Architecture • DBA should be able to change
conceptual structure of database
without affecting all users
The Three-
Level ANSI-
SPARC
Architecture
• External Level

• The way users perceive the data is


called the external level

Three-Level • Users’ view of the database

Architecture • Describes that part of database that is


relevant to a particular user

• Different views may have different


representation of same data (e.g., different
date formats, age derived from DOB etc.)
• Conceptual Level

ANSI- • Community view of the database


• Describes what data is stored in database
SPARC and relationships among the data
• Along with any constraints on data
Three-Level • Independent of any storage considerations
• All entities, their attributes, and their
Architecture relationships;
• The constraints on the data;
• Semantic information about the data
security and integrity information.
• Internal Level
• Physical representation of the database on
the computer
ANSI- • Describes how the data is stored in the
database
SPARC • Physical implementation of the database to

Three-Level
achieve optimal runtime performance and
storage space utilization
• Data structures and file organizations used
Architecture to store data on storage devices
• Interfaces with the operating system access
methods to place the data on the storage
devices, build the indexes, retrieve the data,
and so on
Subschema or
external schema

Database schema Conceptual Schema

Significan Internal Schema

t Terms Conceptual/internal
mapping
Mapping
External/conceptual
mapping
External Schemas
• Also called subschemas
• Multiple schemas per database
• Corresponds to different views of data

Schemas Conceptual Schema


• Describes all the entities, attributes,
and relationships
together with integrity constraints
• Only one schema per database
• Internal Schema
• A complete description of the
internal model, containing the
Schemas definitions of stored records,
the methods of
representation, the data
fields, and the indexes and
storage structures used
• The DBMS is responsible for mapping
between these three types of schema

• The DBMS must check that each external


schema is derivable from the conceptual

Mappings schema, and it must use the information


in the conceptual schema to map between
each external schema and the internal
schema
• Types of mappings
• Conceptual/Internal mapping
• External/Conceptual mapping
• Enables the DBMS to
• Find the actual record or combination
of records in physical storage that
constitute a logical record in the
conceptual schema,

Conceptual/Internal • Together with any constraints to be


Mapping enforced on the operations for that
logical record

• It also allows any differences in entity


names, attribute names, attribute
order, data types, and so on, to be
resolved
Difference
between three
levels
• Upper levels are unaffected by
changes to lower levels
• Logical Data Independence
• The immunity of the external
Data schemas to changes in the
Independence conceptual schema
• Physical Data Independence
• The immunity of the
conceptual schema to changes
in the internal schema
• Refers to protection of external schemas
to changes in conceptual schema

Logical Data • Conceptual schema changes (e.g.,


addition/removal of entities)
Independence
• Should not require changes to external
schema or rewrites of application
programs
• Refers to immunity of conceptual
schema to changes in the internal
schema

Physical Data • Internal schema changes (e.g. using


Independence different file organizations, storage
structures, storage devices etc.)

• Should not require change to


conceptual or external schemas
Data independence and three-level architecture
QUESTIONS!

You might also like