Introduction to Database Systems
Introduction to Database Systems
Yonas Y.
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Chapter 1 Database Languages
and Interfaces
Introduction to Databases
The Database System
Environment
Centralized and
Client/Server
Yonas Y. Architectures for
DBMSs
Classification of
Database Management
Systems
Outline
Database approach and DBMS
Introduction
Database approach
and DBMS
Data Models, Schemas, and Instances
Data Models,
Schemas, and
Instances
Three-Schema Architecture and Data Independence Three-Schema
Architecture and Data
Independence
facts that can be recorded and that have implicit meaning. Yonas Y.
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
facts that can be recorded and that have implicit meaning. Yonas Y.
making. Outline
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
making. Outline
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
making. Outline
Database Languages
I A database represents some aspect of the real world, sometimes and Interfaces
called the miniworld or the universe of discourse (UoD). Changes The Database System
to the miniworld are reflected in the database. Environment
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
making. Outline
Database Languages
I A database represents some aspect of the real world, sometimes and Interfaces
called the miniworld or the universe of discourse (UoD). Changes The Database System
to the miniworld are reflected in the database. Environment
Centralized and
I A database is a logically coherent collection of data with some Client/Server
Architectures for
inherent meaning. A random assortment of data cannot correctly DBMSs
be referred to as a database. Classification of
Database Management
Systems
making. Outline
Database Languages
I A database represents some aspect of the real world, sometimes and Interfaces
called the miniworld or the universe of discourse (UoD). Changes The Database System
to the miniworld are reflected in the database. Environment
Centralized and
I A database is a logically coherent collection of data with some Client/Server
Architectures for
inherent meaning. A random assortment of data cannot correctly DBMSs
be referred to as a database. Classification of
Database Management
I A database is designed, built, and populated with data for a Systems
Introduction
I Defining a database involves specifying the data types, structures,
Database approach
and constraints of the data to be stored in the database. and DBMS
I Constructing the database is the process of storing the data on Data Models,
Schemas, and
some storage medium that is controlled by the DBMS. Instances
changes in the miniworld, and generating reports from the data. Database Languages
and Interfaces
I Sharing a database allows multiple users and programs to access The Database System
Environment
the database simultaneously.
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Introduction
I Defining a database involves specifying the data types, structures,
Database approach
and constraints of the data to be stored in the database. and DBMS
I Constructing the database is the process of storing the data on Data Models,
Schemas, and
some storage medium that is controlled by the DBMS. Instances
changes in the miniworld, and generating reports from the data. Database Languages
and Interfaces
I Sharing a database allows multiple users and programs to access The Database System
Environment
the database simultaneously.
Centralized and
An application program accesses the database by sending queries or Client/Server
Architectures for
requests for data to the DBMS. A query typically causes some data to DBMSs
be retrieved; a transaction may cause some data to be read and some Classification of
Database Management
data to be written into the database. Systems
Yonas Y.
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Yonas Y.
STUDENT
Name Stud.No. Class Major Outline
Abebe 1 1 CE Introduction
Kebede 17 2 CE Database approach
and DBMS
Kemal 19 1 CE
Data Models,
Schemas, and
COURSE Instances
Three-Schema
Course name Course No. CH Depmt. Instructor Architecture and Data
Independence
Data Structures ECEG-4505 5 CE Menor Database Languages
Database Systems ECEG-4507 5 CE Yonas and Interfaces
Centralized and
GRADE REPORT Client/Server
Architectures for
Stud.No. Course No. Grade DBMSs
1 ECEG-4507 A Classification of
1 ECEG-4505 B Database Management
Systems
17 ECEG-4507 B
17 ECEG-4703 B
17 ECEG-4505 C
19 ECEG-4507 A
AAiT - School of Electrical and Computer Engineering 14
Characteristics of the Database Approach
In traditional file processing approach, each user defines and Chapter 1
implements the files needed for a specific software application as part of Yonas Y.
is called meta-data, and it describes the structure of the primary Database Languages
and Interfaces
database. The Database System
The catalog is used by the DBMS software and also by database Environment
users who need information about the database structure. Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
implements the files needed for a specific software application as part of Yonas Y.
is called meta-data, and it describes the structure of the primary Database Languages
and Interfaces
database. The Database System
The catalog is used by the DBMS software and also by database Environment
users who need information about the database structure. Centralized and
Client/Server
Architectures for
I Insulation between programs and data, and data abstraction: DBMSs
In traditional file processing, the structure of data files is embedded Classification of
in the application programs, so any changes to the structure of a Database Management
Systems
file may require changing all programs that access that file.
By contrast, DBMS access programs data files are stored in the
DBMS catalog separately from the access programs. We call this
property program-data independence.
AAiT - School of Electrical and Computer Engineering 16
The characteristic that allows program-data independence and
Chapter 1
program-operation independence is called data abstraction.
Yonas Y.
I Support of multiple views of the data
Outline
A database typically has many users, each of whom may require a
Introduction
different perspective or view of the database. A view may be a
Database approach
subset of the database or it may contain virtual data that is derived and DBMS
from the database files but is not explicitly stored. Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
control software to ensure that several users trying to update the Database Languages
and Interfaces
same data do so in a controlled manner so that the result of the
The Database System
updates is correct. Environment
A fundamental role of multiuser DBMS software is to ensure that Centralized and
concurrent transactions operate correctly and efficiently. The Client/Server
Architectures for
DBMS must enforce several transaction properties to achieve this. DBMSs
I isolation property ensures that each transaction appears to execute Classification of
in isolation from other transactions, even though hundreds of Database Management
Systems
transactions may be executing concurrently.
I atomicity property ensures that either all the database operations
in a transaction are executed or none are.
Yonas Y.
Outline
Introduction
1. Controlling Redundancy Database approach
and DBMS
2. Restricting Unauthorized Access
Data Models,
3. Providing Storage Structures and Search Techniques for Efficient Schemas, and
Instances
Query Processing
Three-Schema
4. Providing Backup and Recovery Architecture and Data
Independence
Yonas Y.
Outline
Introduction
Database approach
and DBMS
One of the main characteristics of the database approach is to support
Data Models,
data abstraction so that different users can perceive data at their Schemas, and
preferred level of detail. Instances
Classification of
Database Management
Systems
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
Representational data models represent data by using record structures Data Models,
Schemas, and
and hence are sometimes called record-based data models. Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
Representational data models represent data by using record structures Data Models,
Schemas, and
and hence are sometimes called record-based data models. Instances
Three-Schema
Physical data models describe how data is stored as files in the Architecture and Data
Independence
computer by representing information such as record formats, record Database Languages
orderings, and access paths. and Interfaces
Classification of
Database Management
Systems
Yonas Y.
Outline
The description of a database is called the database schema, which is
Introduction
specified during database design and is not expected to change
Database approach
frequently. A displayed schema is called a schema diagram. and DBMS
Data Models,
STUDENT Schemas, and
Instances
Name Stud.No. Class Major
Three-Schema
Architecture and Data
Independence
COURSE Database Languages
Course name Course number CH Depmt. Instructor and Interfaces
populated or loaded with the initial data. From then on, every Three-Schema
Architecture and Data
time an update operation is applied to the database, we get Independence
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
1. The internal level has an internal schema, which describes the Database approach
and DBMS
physical storage structure of the database.
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
1. The internal level has an internal schema, which describes the Database approach
and DBMS
physical storage structure of the database.
Data Models,
2. The conceptual level has a conceptual schema, which describes Schemas, and
Instances
the structure of the whole database for a community of users. It Three-Schema
hides the details of physical storage structures and concentrates on Architecture and Data
Independence
describing entities, data types, relationships, user operations, and Database Languages
constraints. and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
1. The internal level has an internal schema, which describes the Database approach
and DBMS
physical storage structure of the database.
Data Models,
2. The conceptual level has a conceptual schema, which describes Schemas, and
Instances
the structure of the whole database for a community of users. It Three-Schema
hides the details of physical storage structures and concentrates on Architecture and Data
Independence
describing entities, data types, relationships, user operations, and Database Languages
constraints. and Interfaces
Classification of
Database Management
Systems
1. The internal level has an internal schema, which describes the Database approach
and DBMS
physical storage structure of the database.
Data Models,
2. The conceptual level has a conceptual schema, which describes Schemas, and
Instances
the structure of the whole database for a community of users. It Three-Schema
hides the details of physical storage structures and concentrates on Architecture and Data
Independence
describing entities, data types, relationships, user operations, and Database Languages
constraints. and Interfaces
Classification of
The three-level architecture has an important place in database Database Management
Systems
technology development because it clearly separates the users external
level, the databases conceptual level, and the internal storage level for
designing a database.
Yonas Y.
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Classification of
Database Management
Systems
Yonas Y.
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
refers to its own external schema. Hence, the DBMS must transform a Classification of
Database Management
request specified on an external schema into a request against the Systems
conceptual schema, and then into a request on the internal schema for
processing over the stored database.
The processes of transforming requests and results between levels are
called mappings.
AAiT - School of Electrical and Computer Engineering 33
Data Independence
Data independence, is defined as the capacity to change the schema at Chapter 1
one level of a database system without having to change the schema at Yonas Y.
the next higher level. We can define two types of data independence: Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
one level of a database system without having to change the schema at Yonas Y.
the next higher level. We can define two types of data independence: Outline
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
one level of a database system without having to change the schema at Yonas Y.
the next higher level. We can define two types of data independence: Outline
2. Physical data independence is the capacity to change the internal The Database System
Environment
schema without having to change the conceptual schema. Changes
Centralized and
to the internal schema may be needed because some physical files Client/Server
Architectures for
were reorganized-for example, by creating additional access DBMSs
structures-to improve the performance of retrieval or update. If the Classification of
same data as before remains in the database, we should not have Database Management
Systems
to change the conceptual schema.
one level of a database system without having to change the schema at Yonas Y.
the next higher level. We can define two types of data independence: Outline
2. Physical data independence is the capacity to change the internal The Database System
Environment
schema without having to change the conceptual schema. Changes
Centralized and
to the internal schema may be needed because some physical files Client/Server
Architectures for
were reorganized-for example, by creating additional access DBMSs
structures-to improve the performance of retrieval or update. If the Classification of
same data as before remains in the database, we should not have Database Management
Systems
to change the conceptual schema.
However, the two levels of mappings to achieve true data independence
create an overhead during compilation or execution of a query or
program, leading to inefficiencies in the DBMS.
AAiT - School of Electrical and Computer Engineering 37
DBMS Languages
I Once the design of a database is completed and a DBMS is chosen Chapter 1
to implement the database, the first step is to specify conceptual Yonas Y.
and internal schemas for the database and any mappings between
Outline
the two. If no strict separation of levels is maintained, one
Introduction
language, called the data definition language (DDL), is used.
Database approach
I In DBMSs where a clear separation is maintained between the and DBMS
conceptual and internal levels, the DDL is used to specify the Data Models,
Schemas, and
conceptual schema only. Another language, the storage definition Instances
external schemas. In relational DBMSs, SQL is used in the role of Database Languages
and Interfaces
view definition language (VDL), to specify user views and their
The Database System
mappings as results of predefined queries. Environment
I Once the database schemas are compiled and the database is Centralized and
Client/Server
populated with data, users must have some means to manipulate Architectures for
DBMSs
the database. The DBMS provides a set of operations or a
Classification of
language called the data manipulation language(DML) for these Database Management
purposes. Systems
Yonas Y.
I Menu-Based Interfaces for Web Clients or Browsing: These
interfaces present the user with lists of options (called menus) that Outline
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
I Menu-Based Interfaces for Web Clients or Browsing: These
interfaces present the user with lists of options (called menus) that Outline
Database approach
I Forms-Based Interfaces: A forms-based interface displays a form and DBMS
to each user. Users can fill out all of the form entries to insert new Data Models,
data, or they can fill out only certain entries, in which case the Schemas, and
Instances
DBMS will retrieve matching data for the remaining entries. Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
I Menu-Based Interfaces for Web Clients or Browsing: These
interfaces present the user with lists of options (called menus) that Outline
Database approach
I Forms-Based Interfaces: A forms-based interface displays a form and DBMS
to each user. Users can fill out all of the form entries to insert new Data Models,
data, or they can fill out only certain entries, in which case the Schemas, and
Instances
DBMS will retrieve matching data for the remaining entries. Three-Schema
Architecture and Data
I Graphical User Interfaces: A GUI typically displays a schema to Independence
the user in diagrammatic form. The user then can specify a query Database Languages
and Interfaces
by manipulating the diagram.
The Database System
Environment
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
I Menu-Based Interfaces for Web Clients or Browsing: These
interfaces present the user with lists of options (called menus) that Outline
Database approach
I Forms-Based Interfaces: A forms-based interface displays a form and DBMS
to each user. Users can fill out all of the form entries to insert new Data Models,
data, or they can fill out only certain entries, in which case the Schemas, and
Instances
DBMS will retrieve matching data for the remaining entries. Three-Schema
Architecture and Data
I Graphical User Interfaces: A GUI typically displays a schema to Independence
the user in diagrammatic form. The user then can specify a query Database Languages
and Interfaces
by manipulating the diagram.
The Database System
I Natural Language Interfaces: These interfaces accept requests Environment
Yonas Y.
I Menu-Based Interfaces for Web Clients or Browsing: These
interfaces present the user with lists of options (called menus) that Outline
Database approach
I Forms-Based Interfaces: A forms-based interface displays a form and DBMS
to each user. Users can fill out all of the form entries to insert new Data Models,
data, or they can fill out only certain entries, in which case the Schemas, and
Instances
DBMS will retrieve matching data for the remaining entries. Three-Schema
Architecture and Data
I Graphical User Interfaces: A GUI typically displays a schema to Independence
the user in diagrammatic form. The user then can specify a query Database Languages
and Interfaces
by manipulating the diagram.
The Database System
I Natural Language Interfaces: These interfaces accept requests Environment
Yonas Y.
Outline
Introduction
Database approach
and DBMS
I Interfaces for Parametric Users: Parametric users, such as bank Data Models,
tellers, often have a small set of operations that they must perform Schemas, and
Instances
repeatedly. Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
Outline
Introduction
Database approach
and DBMS
I Interfaces for Parametric Users: Parametric users, such as bank Data Models,
tellers, often have a small set of operations that they must perform Schemas, and
Instances
repeatedly. Three-Schema
Architecture and Data
I Interfaces for the DBA: Most database systems contain privileged Independence
commands that can be used only by the DBA staff. Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Figure: 1.3 Component modules of a DBMS and their interactions. Architectures for
DBMSs
Classification of
Database Management
Systems
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Figure: 1.3 Component modules of a DBMS and their interactions. Architectures for
DBMSs
Classification of
Database Management
I The DBMS interacts with the operating system(OS) when disk Systems
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Introduction
Database System Utilities
Database approach
In addition to possessing the software modules, most DBMSs have and DBMS
database utilities that help the DBA manage the database system. Data Models,
Schemas, and
I Loading. A loading utility is used to load existing data files-such as Instances
text files or sequential files-into the database. Usually, the current Three-Schema
Architecture and Data
(source) format of the data file and the desired (target) database Independence
file structure are specified to the utility, which then automatically Database Languages
and Interfaces
reformats the data and stores it in the database.
The Database System
I Backup. A backup utility creates a backup copy of the database, Environment
usually by dumping the entire database onto tape or other mass Centralized and
Client/Server
storage medium. Architectures for
DBMSs
I Database storage reorganization. This utility can be used to Classification of
Database Management
reorganize a set of database files into different file organizations, Systems
and create new access paths to improve performance.
I Performance monitoring. Such a utility monitors database usage
and provides statistics to the DBA.
AAiT - School of Electrical and Computer Engineering 49
Centralized DBMSs Architecture
I Architectures for DBMSs have followed trends similar to those for Chapter 1
execution, and user interface processing were carried out on one Data Models,
Schemas, and
machine. Figure 1.4 illustrates the physical components in a Instances
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
printers, database servers, Web servers, e-mail servers, and other Outline
software and equipment are connected via a network. Introduction
Database approach
Figure 1.5 illustrates client/server architecture at the logical level; and DBMS
Figure 1.6 is a simplified diagram that shows the physical architecture. Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Yonas Y.
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Database Languages
Two-Tier Client/Server Architectures for DBMSs and Interfaces
which started as centralized systems, the system components that Centralized and
Client/Server
were first moved to the client side were the user interface and Architectures for
DBMSs
application programs.
Classification of
I The query and transaction functionality related to SQL processing Database Management
Systems
remained on the server side. In an RDBMS, the server is also
often called an SQL server.
The advantages of this architecture are its simplicity and seamless
compatibility with existing systems.
AAiT - School of Electrical and Computer Engineering 53
Three-Tier and n-Tier Architectures for Web Applications
Many Web applications use an architecture called the three-tier
architecture, which adds an intermediate layer between the client and Chapter 1
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Figure: 1.7 Logical three-tier client/server architecture, with a couple of The Database System
commonly used nomenclatures. Environment
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Outline
Introduction
Database approach
and DBMS
Data Models,
Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Figure: 1.7 Logical three-tier client/server architecture, with a couple of The Database System
commonly used nomenclatures. Environment
Centralized and
Client/Server
Architectures for
This intermediate layer or middle tier is called the application server or DBMSs
the Web server, depending on the application. Classification of
Database Management
I This server plays an intermediary role by running application Systems
Data Models,
I The bottom layer includes all data management services. Schemas, and
Instances
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Data Models,
I The bottom layer includes all data management services. Schemas, and
Instances
Three-Schema
Other architectures have also been proposed. It is possible to divide the Architecture and Data
layers between the user and the stored data further into finer Independence
Typically, the business logic layer is divided into multiple layers. Besides The Database System
Environment
distributing programming and data throughout a network, n-tier
Centralized and
applications afford the advantage that any one tier can run on an Client/Server
Architectures for
appropriate processor or operating system platform and can be handled DBMSs
independently. Classification of
Database Management
Advances in encryption and decryption technology make it safer to Systems
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
Today we have open source (free) DBMS products and also paid Introduction
ones. The giant systems are being sold in modular form with Database approach
and DBMS
components to handle distribution, replication, parallel processing, Data Models,
mobile capability, and so on, and with a large number of Schemas, and
Instances
parameters that must be defined for the configuration.
Three-Schema
Architecture and Data
Independence
Database Languages
and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
Today we have open source (free) DBMS products and also paid Introduction
ones. The giant systems are being sold in modular form with Database approach
and DBMS
components to handle distribution, replication, parallel processing, Data Models,
mobile capability, and so on, and with a large number of Schemas, and
Instances
parameters that must be defined for the configuration.
Three-Schema
Architecture and Data
Independence
I We can also classify a DBMS on the basis of the types of access
Database Languages
path options for storing files. and Interfaces
Centralized and
Client/Server
Architectures for
DBMSs
Classification of
Database Management
Systems
Yonas Y.
Today we have open source (free) DBMS products and also paid Introduction
ones. The giant systems are being sold in modular form with Database approach
and DBMS
components to handle distribution, replication, parallel processing, Data Models,
mobile capability, and so on, and with a large number of Schemas, and
Instances
parameters that must be defined for the configuration.
Three-Schema
Architecture and Data
Independence
I We can also classify a DBMS on the basis of the types of access
Database Languages
path options for storing files. and Interfaces
Classification of
Database Management
Systems