SlideShare a Scribd company logo
1
Database Management System 1
2
Learning Outcomes…
• Will Understand the role of a database management system in an
organization.
• Will be able to model an application’s data requirements using
conceptual modeling tools like ER diagrams and design
database schemas based on the conceptual model.
• Will have a broad understanding of database concepts and
database management system software.
• Will have a high-level understanding of major DBMS
components and their function.
3
Text Book
4
Today’s Agenda
• Introduction of DBMS
• Data vs. Information
• DBMS Concepts
• Where is a DBMS being used?
• What is DBMS?
• Need of DBMS
• Applications
• Vendors
5
Why to Learn
• Traditionally, data was organized in file formats. DBMS
was a new concept then, and all the research was done to
make it overcome the deficiencies in traditional style of
data management. A modern DBMS has the following
characteristics −
 Real-world entity
 Relation-based tables
 Isolation of data and application
 Less redundancy
 Consistency
 Query Language
6
Why Study Databases??
Shift from computation to information
• at the “low end”: scramble to webspace (a mess!)
• at the “high end”: scientific applications
Datasets increasing in diversity and volume.
Digital libraries, interactive video, Human Genome
project
• ... need for DBMS exploding
 DBMS encompasses most of CS
• OS, languages, theory, AI, multimedia, logic
7
Introduction of DBMS
Have you ever analyzed how the various
university prepare results and manage
various records related to the student and
faculty?
They also apply the concept of DBMS
8
What is DBMS
• DBMS stands for:
• Means:
Database Management System
Data Base Management System
9
Introduction of DBMS
• The software used for the management,
maintenance and retrieval of the data
stored in the database is called database
management system (DBMS).
• It is the collection of interrelated data and
a set of program to access those data.
10
Introduction of DBMS
• Database management system free the programmer
from the need to worry about the organization and
location of the data.
• The primary goal of DBMS is to provide an
environment which is both convenient and efficient
to use in retrieving and storing information.
Example: University Results, IRCTC
11
Data Vs. Information
• Data is the complete list of facts and details like text, observations, figures,
symbols and description of things. It is the raw list of facts that are processed
to gain information.
• Data themselves are fairly useless, but when these data are interpreted and
processed to determine its true meaning, they becomes useful and can be
named as Information.
• Information is data that has been processed in such a way as to be meaningful
to the person who receives it. It is any thing that is communicated.
12
Data Vs. Information
• Data can be anything like name of a person or a place or a number etc. Data is the
name given to basic facts and entities such as names and numbers. The main
examples of data are weights, prices, costs, numbers of items sold, employee
names, product names, addresses, tax codes, registration marks etc.
Data can be of two types:
• Qualitative data: It is the non-numerical data. For eg., texture of the skin, colour
of eyes, etc.
• Quantitative data: Quantitative data is given in numbers. Data in the form of
questions such as “how much”, “how many”, gives the quantitative data.
13
Data Vs. Information
Information:
Information is data that has been converted into a more useful or
intelligible form. It is the set of data that has been organized for
direct utilization of mankind, as information helps human beings in
their decision making process. Examples are: Time Table, Merit
List, Report card, Headed tables, printed documents, pay slips,
receipts, reports etc. The information is obtained by assembling
items of data into a meaningful form. For example, marks obtained
by students and their roll numbers form data, the report card/sheet is
the information.
14
Data Vs. Information
15
Example
16
DBMS Concepts
• Database
• Access data from database
• Database system
• Function of DBMS
17
Database
• A database is a logically coherent collection of data with some
inherent meaning representing some aspects of real world. It is
designed built and populated with data for a specific purpose.
It consist of four elements:
 Data
 Relationship
 Constraints
 Schema
18
Database
• Data Items:
Data are binary computer representation of stored logical entities.
They are distinct pieces of information usually formatted in a
special way. Data can exists in variety of forms like text, number or
both.
• Relationship:
Relationship represents a correspondence between the various data
elements.
19
Database
• Constraints: Constraints enforce limits to the data or type of data that can be
inserted/updated/deleted from a table. The whole purpose of constraints is to maintain the data
integrity during an update/delete/insert into a table. In this class we will learn several types of
constraints that can be created in RDBMS.
Types of constraints
• NOT NULL
• UNIQUE
• DEFAULT
• CHECK
• Key Constraints – PRIMARY KEY, FOREIGN KEY
• Domain constraints
• Mapping constraints
20
Database
• Schema:
The overall design of the
database is called the database
schema. It not only describes
the organization of data
but also represents the
relationship between various
tables in a database.
Example
21
Types of Schema
Logical Database Schema:
This represents how the data is organized in terms of tables, and how the different
attributes in the different tables link them. Different database management systems use
different syntax to define the logical architecture and constraints of a database which is
called logical database schema.
Physical Database Schema:
This represents how data is stored physically
on disk storage.
Database schema is Just a representation
and it does not contain any data.
22
Accessing data from Database
23
Metadata
• Metadata is simply data about data. It means it is a description
and context of the data. It helps to organize, find and understand
data. Here are a few real world examples of metadata:
• Title and description,
• Tags and categories,
• Who created and when,
• Who last modified and when,
• Who can access or update.
24
Metadata
Every time you take a
photo with today's
cameras a bunch of
metadata is gathered and
saved with it:
•date and time,
•filename,
•camera settings,
•geolocation.
Source: https://dataedo.com/kb/data-
glossary/what-is-metadata
25
Metadata
Source: https://dataedo.com/kb/data-
glossary/what-is-metadata
Each book has a number of standard
metadata on the covers and inside.
This includes:
•a title,
•author name,
•publisher and copyright details,
•description on a back,
•table of contents,
•index,
•page numbers.
26
Metadata
• Most popular databases provide access to
their metadata with a set of tables or views often
called system catalog or data dictionary. Many of
them implement or standard information schema. We
can access those views using SQL.
27
Database System
It is a collection of database and DBMS software.
It consist of four major components:
• Data
• Hardware
• Software
• Database Users
28
Database System
Hardware
• The secondary storage volumes-typically magnetic
disks that are used to hold the stored data together
with the associated I/O devices like disk drives,
device controller, I/O Channel etc.
• The hardware processor and associated main memory
that are used to support the execution of the database
system software.
29
Software and Database Users
• All request for access to the database are handled by the
DBMS software.
• The primary goal of the system is to retrieve data and store
new data in the database. People who work with a database
can be categorized as the database users and administrator.
• We will discuss it in detail in the next class.
30
Function of DBMS
• Accept data definition in the source form and convert.
• Creation of records.
• Query
• DDL Compiler
• DDL Compiler
• Transaction Processing
• Data dictionary function
• Metadata task
31
Application of database
• Universities
• Hospital
• Bank
• Railway reservation
• Airlines
• Human resources
• IT Industry
• Telecommunication
• Credit and transactions
32
Popular database system vendors
• Oracle
• IBM
• MSSQL-Server
• Sybase
• Informix
• MS Access
• Fire Bird
• Mark Logic
• My SQL
33
Big name in databases
Company Product
Oracle 8i, 9i, 10 g, 11g, 12c
IBM DB2, Universal Server
Microsoft Access, SQL Server
Sybase Adaptive server
Informix Dynamic server
34
Introduction to Database Management System
As the name suggests, the database management system
consists of two parts. They are:
1. Database and
2. Management System
35
What is a Database?
• To find out what database is, we have to start from
data, which is the basic building block of any DBMS.
• Data: Facts, figures, statistics etc. having no particular
meaning (e.g. 1, ABC, 19 etc).
• Record: Collection of related data items, e.g. in the
above example the three data items had no meaning. But
if we organize them in the following way, then they
collectively represent meaningful information.
36
Cont…
Table or Relation: Collection of related records.
The columns of this relation are called Fields, Attributes or
Domains. The rows are called Tuples or Records
37
Cont…
Database: Collection of related relations. Consider the following
collection of tables:
We now have a collection of 4 tables. They can be
called a “related collection” because we can clearly
find out that there are some common attributes
existing in a selected pair of tables. Because of these
common attributes we may combine the data of two
or more tables together to find out the complete
details of a student. Questions like “Which hostel
does the youngest student live in?” can be answered
now, although Age and Hostel attributes are in
different tables.
38
Cont…
• A database in a DBMS could be viewed by lots of different
people with different responsibilities.
: Empolyees are accessing Data through DBMS
For example, within a company
there are different departments,
as well as customers, who each
need to see different kinds of
data. Each employee in the
company will have different levels
of access to the database with
their own customized front-end
application.
39
Cont…
• In a database, data is organized strictly in row and
column format. The rows are called Tuple or Record.
The data items within one row may belong to
different data types. On the other hand, the columns
are often called Domain or Attribute. All the data
items within a single attribute are of the same data
type.
40
What is Management System?
• A database-management system (DBMS) is a collection of
interrelated data and a set of programs to access those data.
This is a collection of related data with an implicit meaning
and hence is a database. The collection of data, usually
referred to as the database, contains information relevant to
an enterprise. The primary goal of a DBMS is to provide a
way to store and retrieve database information that is both
convenient and efficient. By data, we mean known facts that
can be recorded and that have implicit meaning
41
Database Management System (DBMS)???
• A Database management system is a computerized
record-keeping system. It is a repository or a
container for collection of computerized data files.
The overall purpose of DBMS is to allow he users to
define, store, retrieve and update the information
contained in the database on demand. Information can
be anything that is of significance to an individual or
organization.
42
In ALL DBMS is…
• Data- Any fact that can be recorded
e.g. texts, numbers, alphanumeric, audio, video, image.
• Database- Collection of interrelated data
 Types of Database-
 Traditional database
 Multimedia database
 Geographic Information System (GIS) database
 Real time database
 Data Warehouse (huge volume of historical data)
• DBMS: Collection of interrelated data and a set of programs to access those data. It
helps us to store and retrieve database information in a convenient and efficient
manner
43
Need of DBMS???
• Provide a highly efficient method for handling large
amount of different types of data with ease.
• Database allows data to be stored systematically.
• Data can be easily retrieved, filtered, sorted and
updated efficiently and accurately.
44

More Related Content

PPTX
MIS-3rd Unit.pptx
PPTX
MIS-3rd Unit.pptx
PPTX
DBMS ppts unit1.pptx
PPT
Lecture 1 =Unit 1 Part 1.ppt
PPTX
DATABASE MANAGEMENT SYSTEMS CS 3492.pptx
PPTX
DBMS introduction
PPT
Fundamentals of information systems chapter 3.ppt
MIS-3rd Unit.pptx
MIS-3rd Unit.pptx
DBMS ppts unit1.pptx
Lecture 1 =Unit 1 Part 1.ppt
DATABASE MANAGEMENT SYSTEMS CS 3492.pptx
DBMS introduction
Fundamentals of information systems chapter 3.ppt

Similar to DBMS_Lect.1 intro.pptx sdcaacweewcssrwe w (20)

PPTX
Fundamentals of information systems chapter 3.pptx
PDF
1.0 Introduction to Database Management Systems.pdf
PPTX
Unit 1_1680588168525885258552585525855.pptx
PPTX
Overview of Data Base Systems Concepts and Architecture
PPTX
MS-CIT Unit 9.pptx
PPSX
PPT
Info systems databases
PPTX
01-database-management.pptx
PDF
lecture 1.pdf
PDF
Database systems Handbook 2V.pdf
PPTX
01.-Introduction-to-databases and relational db
PPTX
rdbms1-191014080818000000000000000000000000000000000
PDF
Database systems Handbook dbms.pdf
PDF
Database systems Handbook dbms.pdf
PDF
Database systems Handbook.pdf
PDF
Database systems Handbook dbms.pdf
PDF
Database systems Handbook.pdf
PPTX
RowanDay4.pptx
PDF
Database management systems Lecture Notes
PPTX
INTRODUCTION TO DATABASE-SYSTEMS PRESENTATION.pptx
Fundamentals of information systems chapter 3.pptx
1.0 Introduction to Database Management Systems.pdf
Unit 1_1680588168525885258552585525855.pptx
Overview of Data Base Systems Concepts and Architecture
MS-CIT Unit 9.pptx
Info systems databases
01-database-management.pptx
lecture 1.pdf
Database systems Handbook 2V.pdf
01.-Introduction-to-databases and relational db
rdbms1-191014080818000000000000000000000000000000000
Database systems Handbook dbms.pdf
Database systems Handbook dbms.pdf
Database systems Handbook.pdf
Database systems Handbook dbms.pdf
Database systems Handbook.pdf
RowanDay4.pptx
Database management systems Lecture Notes
INTRODUCTION TO DATABASE-SYSTEMS PRESENTATION.pptx
Ad

Recently uploaded (20)

PDF
Well-logging-methods_new................
PDF
Arduino robotics embedded978-1-4302-3184-4.pdf
PDF
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
Welding lecture in detail for understanding
DOCX
573137875-Attendance-Management-System-original
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PDF
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPTX
additive manufacturing of ss316l using mig welding
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
PPTX
web development for engineering and engineering
PPTX
UNIT 4 Total Quality Management .pptx
PDF
Embodied AI: Ushering in the Next Era of Intelligent Systems
PPTX
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
PDF
Operating System & Kernel Study Guide-1 - converted.pdf
PPTX
Strings in CPP - Strings in C++ are sequences of characters used to store and...
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
Well-logging-methods_new................
Arduino robotics embedded978-1-4302-3184-4.pdf
The CXO Playbook 2025 – Future-Ready Strategies for C-Suite Leaders Cerebrai...
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Welding lecture in detail for understanding
573137875-Attendance-Management-System-original
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
CYBER-CRIMES AND SECURITY A guide to understanding
Mitigating Risks through Effective Management for Enhancing Organizational Pe...
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
additive manufacturing of ss316l using mig welding
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
web development for engineering and engineering
UNIT 4 Total Quality Management .pptx
Embodied AI: Ushering in the Next Era of Intelligent Systems
MCN 401 KTU-2019-PPE KITS-MODULE 2.pptx
Operating System & Kernel Study Guide-1 - converted.pdf
Strings in CPP - Strings in C++ are sequences of characters used to store and...
Model Code of Practice - Construction Work - 21102022 .pdf
Ad

DBMS_Lect.1 intro.pptx sdcaacweewcssrwe w

  • 2. 2 Learning Outcomes… • Will Understand the role of a database management system in an organization. • Will be able to model an application’s data requirements using conceptual modeling tools like ER diagrams and design database schemas based on the conceptual model. • Will have a broad understanding of database concepts and database management system software. • Will have a high-level understanding of major DBMS components and their function.
  • 4. 4 Today’s Agenda • Introduction of DBMS • Data vs. Information • DBMS Concepts • Where is a DBMS being used? • What is DBMS? • Need of DBMS • Applications • Vendors
  • 5. 5 Why to Learn • Traditionally, data was organized in file formats. DBMS was a new concept then, and all the research was done to make it overcome the deficiencies in traditional style of data management. A modern DBMS has the following characteristics −  Real-world entity  Relation-based tables  Isolation of data and application  Less redundancy  Consistency  Query Language
  • 6. 6 Why Study Databases?? Shift from computation to information • at the “low end”: scramble to webspace (a mess!) • at the “high end”: scientific applications Datasets increasing in diversity and volume. Digital libraries, interactive video, Human Genome project • ... need for DBMS exploding  DBMS encompasses most of CS • OS, languages, theory, AI, multimedia, logic
  • 7. 7 Introduction of DBMS Have you ever analyzed how the various university prepare results and manage various records related to the student and faculty? They also apply the concept of DBMS
  • 8. 8 What is DBMS • DBMS stands for: • Means: Database Management System Data Base Management System
  • 9. 9 Introduction of DBMS • The software used for the management, maintenance and retrieval of the data stored in the database is called database management system (DBMS). • It is the collection of interrelated data and a set of program to access those data.
  • 10. 10 Introduction of DBMS • Database management system free the programmer from the need to worry about the organization and location of the data. • The primary goal of DBMS is to provide an environment which is both convenient and efficient to use in retrieving and storing information. Example: University Results, IRCTC
  • 11. 11 Data Vs. Information • Data is the complete list of facts and details like text, observations, figures, symbols and description of things. It is the raw list of facts that are processed to gain information. • Data themselves are fairly useless, but when these data are interpreted and processed to determine its true meaning, they becomes useful and can be named as Information. • Information is data that has been processed in such a way as to be meaningful to the person who receives it. It is any thing that is communicated.
  • 12. 12 Data Vs. Information • Data can be anything like name of a person or a place or a number etc. Data is the name given to basic facts and entities such as names and numbers. The main examples of data are weights, prices, costs, numbers of items sold, employee names, product names, addresses, tax codes, registration marks etc. Data can be of two types: • Qualitative data: It is the non-numerical data. For eg., texture of the skin, colour of eyes, etc. • Quantitative data: Quantitative data is given in numbers. Data in the form of questions such as “how much”, “how many”, gives the quantitative data.
  • 13. 13 Data Vs. Information Information: Information is data that has been converted into a more useful or intelligible form. It is the set of data that has been organized for direct utilization of mankind, as information helps human beings in their decision making process. Examples are: Time Table, Merit List, Report card, Headed tables, printed documents, pay slips, receipts, reports etc. The information is obtained by assembling items of data into a meaningful form. For example, marks obtained by students and their roll numbers form data, the report card/sheet is the information.
  • 16. 16 DBMS Concepts • Database • Access data from database • Database system • Function of DBMS
  • 17. 17 Database • A database is a logically coherent collection of data with some inherent meaning representing some aspects of real world. It is designed built and populated with data for a specific purpose. It consist of four elements:  Data  Relationship  Constraints  Schema
  • 18. 18 Database • Data Items: Data are binary computer representation of stored logical entities. They are distinct pieces of information usually formatted in a special way. Data can exists in variety of forms like text, number or both. • Relationship: Relationship represents a correspondence between the various data elements.
  • 19. 19 Database • Constraints: Constraints enforce limits to the data or type of data that can be inserted/updated/deleted from a table. The whole purpose of constraints is to maintain the data integrity during an update/delete/insert into a table. In this class we will learn several types of constraints that can be created in RDBMS. Types of constraints • NOT NULL • UNIQUE • DEFAULT • CHECK • Key Constraints – PRIMARY KEY, FOREIGN KEY • Domain constraints • Mapping constraints
  • 20. 20 Database • Schema: The overall design of the database is called the database schema. It not only describes the organization of data but also represents the relationship between various tables in a database. Example
  • 21. 21 Types of Schema Logical Database Schema: This represents how the data is organized in terms of tables, and how the different attributes in the different tables link them. Different database management systems use different syntax to define the logical architecture and constraints of a database which is called logical database schema. Physical Database Schema: This represents how data is stored physically on disk storage. Database schema is Just a representation and it does not contain any data.
  • 23. 23 Metadata • Metadata is simply data about data. It means it is a description and context of the data. It helps to organize, find and understand data. Here are a few real world examples of metadata: • Title and description, • Tags and categories, • Who created and when, • Who last modified and when, • Who can access or update.
  • 24. 24 Metadata Every time you take a photo with today's cameras a bunch of metadata is gathered and saved with it: •date and time, •filename, •camera settings, •geolocation. Source: https://dataedo.com/kb/data- glossary/what-is-metadata
  • 25. 25 Metadata Source: https://dataedo.com/kb/data- glossary/what-is-metadata Each book has a number of standard metadata on the covers and inside. This includes: •a title, •author name, •publisher and copyright details, •description on a back, •table of contents, •index, •page numbers.
  • 26. 26 Metadata • Most popular databases provide access to their metadata with a set of tables or views often called system catalog or data dictionary. Many of them implement or standard information schema. We can access those views using SQL.
  • 27. 27 Database System It is a collection of database and DBMS software. It consist of four major components: • Data • Hardware • Software • Database Users
  • 28. 28 Database System Hardware • The secondary storage volumes-typically magnetic disks that are used to hold the stored data together with the associated I/O devices like disk drives, device controller, I/O Channel etc. • The hardware processor and associated main memory that are used to support the execution of the database system software.
  • 29. 29 Software and Database Users • All request for access to the database are handled by the DBMS software. • The primary goal of the system is to retrieve data and store new data in the database. People who work with a database can be categorized as the database users and administrator. • We will discuss it in detail in the next class.
  • 30. 30 Function of DBMS • Accept data definition in the source form and convert. • Creation of records. • Query • DDL Compiler • DDL Compiler • Transaction Processing • Data dictionary function • Metadata task
  • 31. 31 Application of database • Universities • Hospital • Bank • Railway reservation • Airlines • Human resources • IT Industry • Telecommunication • Credit and transactions
  • 32. 32 Popular database system vendors • Oracle • IBM • MSSQL-Server • Sybase • Informix • MS Access • Fire Bird • Mark Logic • My SQL
  • 33. 33 Big name in databases Company Product Oracle 8i, 9i, 10 g, 11g, 12c IBM DB2, Universal Server Microsoft Access, SQL Server Sybase Adaptive server Informix Dynamic server
  • 34. 34 Introduction to Database Management System As the name suggests, the database management system consists of two parts. They are: 1. Database and 2. Management System
  • 35. 35 What is a Database? • To find out what database is, we have to start from data, which is the basic building block of any DBMS. • Data: Facts, figures, statistics etc. having no particular meaning (e.g. 1, ABC, 19 etc). • Record: Collection of related data items, e.g. in the above example the three data items had no meaning. But if we organize them in the following way, then they collectively represent meaningful information.
  • 36. 36 Cont… Table or Relation: Collection of related records. The columns of this relation are called Fields, Attributes or Domains. The rows are called Tuples or Records
  • 37. 37 Cont… Database: Collection of related relations. Consider the following collection of tables: We now have a collection of 4 tables. They can be called a “related collection” because we can clearly find out that there are some common attributes existing in a selected pair of tables. Because of these common attributes we may combine the data of two or more tables together to find out the complete details of a student. Questions like “Which hostel does the youngest student live in?” can be answered now, although Age and Hostel attributes are in different tables.
  • 38. 38 Cont… • A database in a DBMS could be viewed by lots of different people with different responsibilities. : Empolyees are accessing Data through DBMS For example, within a company there are different departments, as well as customers, who each need to see different kinds of data. Each employee in the company will have different levels of access to the database with their own customized front-end application.
  • 39. 39 Cont… • In a database, data is organized strictly in row and column format. The rows are called Tuple or Record. The data items within one row may belong to different data types. On the other hand, the columns are often called Domain or Attribute. All the data items within a single attribute are of the same data type.
  • 40. 40 What is Management System? • A database-management system (DBMS) is a collection of interrelated data and a set of programs to access those data. This is a collection of related data with an implicit meaning and hence is a database. The collection of data, usually referred to as the database, contains information relevant to an enterprise. The primary goal of a DBMS is to provide a way to store and retrieve database information that is both convenient and efficient. By data, we mean known facts that can be recorded and that have implicit meaning
  • 41. 41 Database Management System (DBMS)??? • A Database management system is a computerized record-keeping system. It is a repository or a container for collection of computerized data files. The overall purpose of DBMS is to allow he users to define, store, retrieve and update the information contained in the database on demand. Information can be anything that is of significance to an individual or organization.
  • 42. 42 In ALL DBMS is… • Data- Any fact that can be recorded e.g. texts, numbers, alphanumeric, audio, video, image. • Database- Collection of interrelated data  Types of Database-  Traditional database  Multimedia database  Geographic Information System (GIS) database  Real time database  Data Warehouse (huge volume of historical data) • DBMS: Collection of interrelated data and a set of programs to access those data. It helps us to store and retrieve database information in a convenient and efficient manner
  • 43. 43 Need of DBMS??? • Provide a highly efficient method for handling large amount of different types of data with ease. • Database allows data to be stored systematically. • Data can be easily retrieved, filtered, sorted and updated efficiently and accurately.
  • 44. 44