Data Redundancy and Inconsistency
Data Redundancy and Inconsistency
Levels of Abstraction
Physical level : It is also known as internal schema which describes data
storage structures and access paths. It typically uses a physical data
model and the details are hidden from database users. It describes how a
record (e.g. customer) is stored.
Logical level: It is also known as conceptual schema which describes the
structure and constraints for the whole database. It uses a conceptual or
implementation model. It describes data stored in database, and the
relationships among the data.
type customer = record
street : string;
city : integer;
end;