SlideShare a Scribd company logo
4
Most read
14
Most read
15
Most read
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 1
Chapter 1
Introduction: Databases andIntroduction: Databases and
Database Users
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe
OutlineOutline
Basic DefinitionsBasic Definitions
Typical DBMS Functionality
Example of a Database (UNIVERSITY)Example of a Database (UNIVERSITY)
Main Characteristics of the Database Approach
Database UsersDatabase Users
Advantages of Using the Database Approach
When Not to Use DatabasesWhen Not to Use Databases
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 3
Basic DefinitionsBasic Definitions
Data:
Known facts that can be recorded and have an implicit meaning.
Database:
A collection of related data. It has the following implicit properties:
A d t b t t f th l ld tiA database represents some aspect of the real world, sometimes
called the miniworld.
A database is a logically coherent collection of data with some
inherent meaning.
A database is designed, built, and populated with data for specific
purpose.
Examples: Airline reservation system, Students’ registration system
Database Management System (DBMS):Database Management System (DBMS):
A software package/ system to facilitate the creation and maintenance of
a computerized database.
Database System:
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 4
y
The DBMS software together with the data itself. Sometimes, the
applications are also included.
Managing DataManaging Data
There are two approaches to manage dataThere are two approaches to manage data
File-based approach: An approach that utilizes a
collection of application programs which performsg
services to end-users (e.g. Reports). Each
program defines and manages its own data.
Database approach: An approach that data is
collected and manipulated using specific softwarecollected and manipulated using specific software
called Database Management System, and many
programs share this data.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 5
File Based ApproachFile-Based Approach
User 1 Application
Dataprograms
Data
User 2
Application
programsprograms
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 6
Database ApproachDatabase Approach
User 1 Application
Database
DBMS
programs
User 2 Application
programsprograms
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 7
Simplified database system environmentSimplified database system environment
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 8
Typical DBMS FunctionalityTypical DBMS Functionality
Define a particular database in terms of its data types,p yp ,
structures, and constraints
Construct or load the initial database contents on a
d t disecondary storage medium
Manipulating the database:
Retrieval: Querying generating reportsRetrieval: Querying, generating reports
Modification: Insertions, deletions and updates to its content
Accessing the database through Web applications
Processing and Sharing by a set of concurrent users and
application programs – yet, keeping all data valid and
consistent
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 9
consistent
Typical DBMS FunctionalityTypical DBMS Functionality
Other features:Other features:
Protection or Security measures to prevent
unauthorized access
Maintaining the database and associated programs
over the lifetime of the database application
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 10
Example of a Database
(with a Conceptual Data Model)(with a Conceptual Data Model)
Mini-world for the example:Mini world for the example:
Part of a UNIVERSITY environment.
Some mini-world entities:Some mini world entities:
STUDENTs
COURSEsCOURSEs
SECTIONs (of COURSEs)
DEPARTMENTs
INSTRUCTORs
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 11
Example of a Database
(with a Conceptual Data Model)(with a Conceptual Data Model)
Some mini-world relationships:p
SECTIONs are of specific COURSEs
STUDENTs take SECTIONs
COURSEs have prerequisite COURSEs
INSTRUCTORs teach SECTIONs
COURSEs are offered by DEPARTMENTsCOURSEs are offered by DEPARTMENTs
STUDENTs major in DEPARTMENTs
Note: The above entities and relationships are typically
expressed in a conceptual data model, such as the
ENTITY-RELATIONSHIP data model (see Chapters 3 4)
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 12
ENTITY-RELATIONSHIP data model (see Chapters 3, 4)
Example of a simple databaseExample of a simple database
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 13
Main Characteristics of the Database
ApproachApproach
Self-describing nature of a database system:
A DBMS catalog stores the description of a particular
database (e.g. data structures, types, and constraints)
The description is called meta-data.
This allows the DBMS software to work with different
database applications.
Insulation between programs and data:
CCalled program-data independence.
Allows changing data structures and storage organization
without having to change the DBMS access programs.
S t f lti l i f th d tSupport of multiple views of the data:
Each user may see a different view of the database, which
describes only the data of interest to that user.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 14
Main Characteristics of the Database
Approach (continued)Approach (continued)
Sharing of data and multi-user transactiong
processing:
Allowing a set of concurrent users to retrieve from and to
update the databaseupdate the database.
Concurrency control within the DBMS guarantees that each
transaction is correctly executed or aborted
Recovery subsystem ensures each completed transaction
has its effect permanently recorded in the database.
Similarly, each failed transaction is rolled back.y,
OLTP (Online Transaction Processing) is a major part of
database applications. This allows hundreds of concurrent
transactions to execute per second
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 15
transactions to execute per second.
Database UsersDatabase Users
Actors on the Scene: They actually use andy y
control the database content; and design,
develop and maintain database applications
D t b Ad i i t tDatabase Administrators
Database Designers
Software EngineersSoftware Engineers
End-users
Workers Behind the SceneWorkers Behind the Scene
Those who design and develop the DBMS
software and related tools.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 16
Database UsersDatabase Users
Actors on the sceneActors on the scene
Database administrators:
Responsible for authorizing access to the database,p g ,
for coordinating and monitoring its use, acquiring
software and hardware resources, controlling its use
and monitoring efficiency of operationsand monitoring efficiency of operations.
Database Designers:
Responsible to define the content the structure theResponsible to define the content, the structure, the
constraints, and functions or transactions against
the database. They must communicate with the
end users and understand their needs
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 17
end-users and understand their needs.
Categories of End usersCategories of End-users
Actors on the Scene:
End-users: Are those who require access to the database for
querying, updating, and generating reports. They are categorized
as:
Casual end-users: occasionally access the database, but
they may need different information each time.
Naive or parametric end-users: constantly update and queryNaive or parametric end-users: constantly update and query
databases, using standard types of queries and updates.
Sophisticated end-users: thoroughly familiarize themselves
with the facilities of the DBMS so as to implement theirwith the facilities of the DBMS so as to implement their
application to meet their complex requirements.
Stand-alone end-users: maintain personal databases by
using easy-to-use ready-made program packages
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 18
using easy to use ready made program packages.
Advantages of Using the Database
ApproachApproach
Controlling redundancy in data storage and inControlling redundancy in data storage and in
development and maintenance efforts.
Sharing of data among multiple users.g g p
Restricting unauthorized access to data.
Providing persistent storage for program ObjectsProviding persistent storage for program Objects
In Object-oriented DBMSs
Providing Storage Structures (e.g. indexes) forProviding Storage Structures (e.g. indexes) for
efficient Query Processing
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 19
Advantages of Using the Database
Approach (continued)Approach (continued)
Providing backup and recovery services.Providing backup and recovery services.
Providing multiple interfaces to different classes
of users.
Representing complex relationships among data.
Enforcing integrity constraints on the databaseEnforcing integrity constraints on the database.
Permitting actions using active rules
triggers stored procedurestriggers, stored procedures
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 20
Additional Implications of Using the
Database ApproachDatabase Approach
Potential for enforcing standards:
for data item names, display formats, screens, report
structures, Web page layouts, etc.
Reduced application development time
Flexibility to change data structures:
When requirements change
Availability of current information:y
Extremely important for on-line transaction systems such as
airline, hotel, car reservations.
Economies of scale:
Wasteful overlap of resources and personnel can be
avoided by consolidating data and applications across
departments.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 21
When not to use a DBMSWhen not to use a DBMS
Main inhibitors (costs) of using a DBMS:
Hi h i i i l i d ibl d f ddi i l h dHigh initial investment and possible need for additional hardware.
Overhead for providing generality, security, concurrency control,
recovery, and integrity functions.
When a DBMS may be unnecessary:When a DBMS may be unnecessary:
If the database and applications are simple, well defined, and not
expected to change.
If there are real-time requirements that may not be met because of
DBMS h dDBMS overhead.
If access to data by multiple users is not required
When no DBMS may suffice:
If the database system is not able to handle the complexity of dataIf the database system is not able to handle the complexity of data
because of modeling limitations
If the database users need special operations not supported by
the DBMS.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 22

More Related Content

PDF
1 introduction databases and database users
Kumar
 
PPTX
Chapter1
Jafar Nesargi
 
PPT
FDS (Sixth Edition) | C1 | Databases and Database Users
Harsh Verdhan Raj
 
PPT
Introduction & history of dbms
sethu pm
 
PPT
Database Chapter 2
shahadat hossain
 
PPS
Architecture of-dbms-and-data-independence
Anuj Modi
 
PPTX
Unit1 DBMS Introduction
MUHAMMED MASHAHIL PUKKUNNUMMAL
 
PPTX
Dbms slides
rahulrathore725
 
1 introduction databases and database users
Kumar
 
Chapter1
Jafar Nesargi
 
FDS (Sixth Edition) | C1 | Databases and Database Users
Harsh Verdhan Raj
 
Introduction & history of dbms
sethu pm
 
Database Chapter 2
shahadat hossain
 
Architecture of-dbms-and-data-independence
Anuj Modi
 
Unit1 DBMS Introduction
MUHAMMED MASHAHIL PUKKUNNUMMAL
 
Dbms slides
rahulrathore725
 

What's hot (20)

PPT
Basic DBMS ppt
dangwalrajendra888
 
PPT
Database Management System Introduction
Smriti Jain
 
PDF
2 database system concepts and architecture
Kumar
 
PPT
Database systems
Dhani Ahmad
 
PPTX
Characteristic of dabase approach
Luina Pani
 
PPT
1. Introduction to DBMS
koolkampus
 
PPTX
3 Level Architecture
Adeel Rasheed
 
PPTX
Dbms Introduction and Basics
SHIKHA GAUTAM
 
PPTX
Types of databases
Md Showrov Ahmed
 
PPT
Elmasri Navathe DBMS Unit-1 ppt
AbhinavPandey274499
 
PPTX
Database Administration
Bilal Arshad
 
PPTX
Database Management System
NILESH UCHCHASARE
 
PPT
Lecture 01 introduction to database
emailharmeet
 
PPT
Hadoop Map Reduce
VNIT-ACM Student Chapter
 
PPTX
Distributed database
ReachLocal Services India
 
PPT
Lecture 4 mobile database system
salbiahhamzah
 
PDF
Introduction to Database Management Systems: Structure, Applications, and Key...
Mahmud Hasan Tanvir
 
PPTX
Distributed database management system
Pooja Dixit
 
PPT
11 Database Concepts
Praveen M Jigajinni
 
Basic DBMS ppt
dangwalrajendra888
 
Database Management System Introduction
Smriti Jain
 
2 database system concepts and architecture
Kumar
 
Database systems
Dhani Ahmad
 
Characteristic of dabase approach
Luina Pani
 
1. Introduction to DBMS
koolkampus
 
3 Level Architecture
Adeel Rasheed
 
Dbms Introduction and Basics
SHIKHA GAUTAM
 
Types of databases
Md Showrov Ahmed
 
Elmasri Navathe DBMS Unit-1 ppt
AbhinavPandey274499
 
Database Administration
Bilal Arshad
 
Database Management System
NILESH UCHCHASARE
 
Lecture 01 introduction to database
emailharmeet
 
Hadoop Map Reduce
VNIT-ACM Student Chapter
 
Distributed database
ReachLocal Services India
 
Lecture 4 mobile database system
salbiahhamzah
 
Introduction to Database Management Systems: Structure, Applications, and Key...
Mahmud Hasan Tanvir
 
Distributed database management system
Pooja Dixit
 
11 Database Concepts
Praveen M Jigajinni
 
Ad

Viewers also liked (20)

PPT
Introduction to databases
Carol Ansel
 
PDF
Database System Concepts and Architecture
sontumax
 
PPT
Database management system presentation
sameerraaj
 
PPT
En ch01
anibapi
 
PPTX
Sql
pratik201289
 
PPTX
Introduction databases and MYSQL
Naeem Junejo
 
PDF
Quarterly report (Q4) 2007
Tele2
 
PPT
Ch 9 S Q L
guest8fdbdd
 
PDF
A (short) introduction to Databases
Nicola Bernardini
 
PPTX
Introduction to databases
Aashima Wadhwa
 
PDF
Introduction to Databases
Ram Kedem
 
PPT
Sixth sense technolgy
Anvesh Ranga
 
PPTX
Slide 4 dbms users
Visakh V
 
PPT
W 8 introduction to database
Institute of Management Studies UOP
 
PPTX
Introduction to network ( Internet and its layer) Or how internet really works!
Mohammad kermani
 
PDF
Network internet
Kumar
 
PPT
[Www.pkbulk.blogspot.com]file and indexing
AnusAhmad
 
PPTX
Users of Database Systems and Components of Database Environment
Farkhanda Kiran
 
PPTX
Database Systems - SQL - DCL Statements (Chapter 3/4)
Vidyasagar Mundroy
 
PPT
Lecture 4 software process model (2)
IIUI
 
Introduction to databases
Carol Ansel
 
Database System Concepts and Architecture
sontumax
 
Database management system presentation
sameerraaj
 
En ch01
anibapi
 
Introduction databases and MYSQL
Naeem Junejo
 
Quarterly report (Q4) 2007
Tele2
 
Ch 9 S Q L
guest8fdbdd
 
A (short) introduction to Databases
Nicola Bernardini
 
Introduction to databases
Aashima Wadhwa
 
Introduction to Databases
Ram Kedem
 
Sixth sense technolgy
Anvesh Ranga
 
Slide 4 dbms users
Visakh V
 
W 8 introduction to database
Institute of Management Studies UOP
 
Introduction to network ( Internet and its layer) Or how internet really works!
Mohammad kermani
 
Network internet
Kumar
 
[Www.pkbulk.blogspot.com]file and indexing
AnusAhmad
 
Users of Database Systems and Components of Database Environment
Farkhanda Kiran
 
Database Systems - SQL - DCL Statements (Chapter 3/4)
Vidyasagar Mundroy
 
Lecture 4 software process model (2)
IIUI
 
Ad

Similar to Introduction: Databases and Database Users (20)

PPT
Ch01 database-conceptsppt4207
Burhan Chaudhry
 
PPT
introduction to database systems Chapter01.ppt
KelemAlebachew
 
PPT
ch01-Introduction Databases and Database Users.ppt
jacobdiriba
 
PPT
Ch01-Introduction Databases and Database Users.ppt
fermanrw
 
PPT
Introduction to Database management system and characteristics
ShrutiArora343479
 
PPT
chapter 01 introduction to Database.ppt
NuurAxmed2
 
PPT
Chapter01.ppt
ssuser7584721
 
PPT
cse3330-spring14-Ch1.ppt
redmont2
 
PPT
Chapter01 database system in computer.ppt
ubaidullah75790
 
PPT
Chapter01 (3).ppt
abhilashbachu5
 
PDF
Basic to Advance DBMS BOOK for School and Graduate Student
Akhilpandey36
 
PPT
Chapter01.ppt
AdilAlpkocak1
 
PPT
Foundation of database systems -Database Systems.ppt
ABDUKHASHEBA
 
PPT
Chapter01.ppt
KivSoreangsey1
 
PDF
Chapter01.pdf
SATHYANARAYANAKB
 
PPT
Chapte sdfbjsvfjsb shdvgsfjsdhvshyjhscdgppt
ridmoon40318
 
PPT
Chapter01.ppt
RashmiAcharya27
 
PPT
Chapter01.ppt
WaleedMaqsood4
 
PDF
Chapter 1 data base system erd engineer .pdf
hendmohamed98
 
Ch01 database-conceptsppt4207
Burhan Chaudhry
 
introduction to database systems Chapter01.ppt
KelemAlebachew
 
ch01-Introduction Databases and Database Users.ppt
jacobdiriba
 
Ch01-Introduction Databases and Database Users.ppt
fermanrw
 
Introduction to Database management system and characteristics
ShrutiArora343479
 
chapter 01 introduction to Database.ppt
NuurAxmed2
 
Chapter01.ppt
ssuser7584721
 
cse3330-spring14-Ch1.ppt
redmont2
 
Chapter01 database system in computer.ppt
ubaidullah75790
 
Chapter01 (3).ppt
abhilashbachu5
 
Basic to Advance DBMS BOOK for School and Graduate Student
Akhilpandey36
 
Chapter01.ppt
AdilAlpkocak1
 
Foundation of database systems -Database Systems.ppt
ABDUKHASHEBA
 
Chapter01.ppt
KivSoreangsey1
 
Chapter01.pdf
SATHYANARAYANAKB
 
Chapte sdfbjsvfjsb shdvgsfjsdhvshyjhscdgppt
ridmoon40318
 
Chapter01.ppt
RashmiAcharya27
 
Chapter01.ppt
WaleedMaqsood4
 
Chapter 1 data base system erd engineer .pdf
hendmohamed98
 

Recently uploaded (20)

PDF
Introduction to Data Science: data science process
ShivarkarSandip
 
PDF
Unit I Part II.pdf : Security Fundamentals
Dr. Madhuri Jawale
 
PPTX
database slide on modern techniques for optimizing database queries.pptx
aky52024
 
PDF
20ME702-Mechatronics-UNIT-1,UNIT-2,UNIT-3,UNIT-4,UNIT-5, 2025-2026
Mohanumar S
 
PDF
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
PPTX
IoT_Smart_Agriculture_Presentations.pptx
poojakumari696707
 
PDF
Top 10 read articles In Managing Information Technology.pdf
IJMIT JOURNAL
 
PPTX
easa module 3 funtamental electronics.pptx
tryanothert7
 
PDF
Traditional Exams vs Continuous Assessment in Boarding Schools.pdf
The Asian School
 
PPTX
FUNDAMENTALS OF ELECTRIC VEHICLES UNIT-1
MikkiliSuresh
 
PDF
Zero Carbon Building Performance standard
BassemOsman1
 
PPTX
Information Retrieval and Extraction - Module 7
premSankar19
 
PPT
SCOPE_~1- technology of green house and poyhouse
bala464780
 
PDF
Cryptography and Information :Security Fundamentals
Dr. Madhuri Jawale
 
PPTX
MT Chapter 1.pptx- Magnetic particle testing
ABCAnyBodyCanRelax
 
PDF
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
PDF
JUAL EFIX C5 IMU GNSS GEODETIC PERFECT BASE OR ROVER
Budi Minds
 
PPTX
Civil Engineering Practices_BY Sh.JP Mishra 23.09.pptx
bineetmishra1990
 
PPTX
Inventory management chapter in automation and robotics.
atisht0104
 
PDF
FLEX-LNG-Company-Presentation-Nov-2017.pdf
jbloggzs
 
Introduction to Data Science: data science process
ShivarkarSandip
 
Unit I Part II.pdf : Security Fundamentals
Dr. Madhuri Jawale
 
database slide on modern techniques for optimizing database queries.pptx
aky52024
 
20ME702-Mechatronics-UNIT-1,UNIT-2,UNIT-3,UNIT-4,UNIT-5, 2025-2026
Mohanumar S
 
Packaging Tips for Stainless Steel Tubes and Pipes
heavymetalsandtubes
 
IoT_Smart_Agriculture_Presentations.pptx
poojakumari696707
 
Top 10 read articles In Managing Information Technology.pdf
IJMIT JOURNAL
 
easa module 3 funtamental electronics.pptx
tryanothert7
 
Traditional Exams vs Continuous Assessment in Boarding Schools.pdf
The Asian School
 
FUNDAMENTALS OF ELECTRIC VEHICLES UNIT-1
MikkiliSuresh
 
Zero Carbon Building Performance standard
BassemOsman1
 
Information Retrieval and Extraction - Module 7
premSankar19
 
SCOPE_~1- technology of green house and poyhouse
bala464780
 
Cryptography and Information :Security Fundamentals
Dr. Madhuri Jawale
 
MT Chapter 1.pptx- Magnetic particle testing
ABCAnyBodyCanRelax
 
67243-Cooling and Heating & Calculation.pdf
DHAKA POLYTECHNIC
 
JUAL EFIX C5 IMU GNSS GEODETIC PERFECT BASE OR ROVER
Budi Minds
 
Civil Engineering Practices_BY Sh.JP Mishra 23.09.pptx
bineetmishra1990
 
Inventory management chapter in automation and robotics.
atisht0104
 
FLEX-LNG-Company-Presentation-Nov-2017.pdf
jbloggzs
 

Introduction: Databases and Database Users

  • 1. Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 1
  • 2. Chapter 1 Introduction: Databases andIntroduction: Databases and Database Users Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe
  • 3. OutlineOutline Basic DefinitionsBasic Definitions Typical DBMS Functionality Example of a Database (UNIVERSITY)Example of a Database (UNIVERSITY) Main Characteristics of the Database Approach Database UsersDatabase Users Advantages of Using the Database Approach When Not to Use DatabasesWhen Not to Use Databases Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 3
  • 4. Basic DefinitionsBasic Definitions Data: Known facts that can be recorded and have an implicit meaning. Database: A collection of related data. It has the following implicit properties: A d t b t t f th l ld tiA database represents some aspect of the real world, sometimes called the miniworld. A database is a logically coherent collection of data with some inherent meaning. A database is designed, built, and populated with data for specific purpose. Examples: Airline reservation system, Students’ registration system Database Management System (DBMS):Database Management System (DBMS): A software package/ system to facilitate the creation and maintenance of a computerized database. Database System: Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 4 y The DBMS software together with the data itself. Sometimes, the applications are also included.
  • 5. Managing DataManaging Data There are two approaches to manage dataThere are two approaches to manage data File-based approach: An approach that utilizes a collection of application programs which performsg services to end-users (e.g. Reports). Each program defines and manages its own data. Database approach: An approach that data is collected and manipulated using specific softwarecollected and manipulated using specific software called Database Management System, and many programs share this data. Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 5
  • 6. File Based ApproachFile-Based Approach User 1 Application Dataprograms Data User 2 Application programsprograms Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 6
  • 7. Database ApproachDatabase Approach User 1 Application Database DBMS programs User 2 Application programsprograms Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 7
  • 8. Simplified database system environmentSimplified database system environment Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 8
  • 9. Typical DBMS FunctionalityTypical DBMS Functionality Define a particular database in terms of its data types,p yp , structures, and constraints Construct or load the initial database contents on a d t disecondary storage medium Manipulating the database: Retrieval: Querying generating reportsRetrieval: Querying, generating reports Modification: Insertions, deletions and updates to its content Accessing the database through Web applications Processing and Sharing by a set of concurrent users and application programs – yet, keeping all data valid and consistent Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 9 consistent
  • 10. Typical DBMS FunctionalityTypical DBMS Functionality Other features:Other features: Protection or Security measures to prevent unauthorized access Maintaining the database and associated programs over the lifetime of the database application Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 10
  • 11. Example of a Database (with a Conceptual Data Model)(with a Conceptual Data Model) Mini-world for the example:Mini world for the example: Part of a UNIVERSITY environment. Some mini-world entities:Some mini world entities: STUDENTs COURSEsCOURSEs SECTIONs (of COURSEs) DEPARTMENTs INSTRUCTORs Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 11
  • 12. Example of a Database (with a Conceptual Data Model)(with a Conceptual Data Model) Some mini-world relationships:p SECTIONs are of specific COURSEs STUDENTs take SECTIONs COURSEs have prerequisite COURSEs INSTRUCTORs teach SECTIONs COURSEs are offered by DEPARTMENTsCOURSEs are offered by DEPARTMENTs STUDENTs major in DEPARTMENTs Note: The above entities and relationships are typically expressed in a conceptual data model, such as the ENTITY-RELATIONSHIP data model (see Chapters 3 4) Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 12 ENTITY-RELATIONSHIP data model (see Chapters 3, 4)
  • 13. Example of a simple databaseExample of a simple database Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 13
  • 14. Main Characteristics of the Database ApproachApproach Self-describing nature of a database system: A DBMS catalog stores the description of a particular database (e.g. data structures, types, and constraints) The description is called meta-data. This allows the DBMS software to work with different database applications. Insulation between programs and data: CCalled program-data independence. Allows changing data structures and storage organization without having to change the DBMS access programs. S t f lti l i f th d tSupport of multiple views of the data: Each user may see a different view of the database, which describes only the data of interest to that user. Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 14
  • 15. Main Characteristics of the Database Approach (continued)Approach (continued) Sharing of data and multi-user transactiong processing: Allowing a set of concurrent users to retrieve from and to update the databaseupdate the database. Concurrency control within the DBMS guarantees that each transaction is correctly executed or aborted Recovery subsystem ensures each completed transaction has its effect permanently recorded in the database. Similarly, each failed transaction is rolled back.y, OLTP (Online Transaction Processing) is a major part of database applications. This allows hundreds of concurrent transactions to execute per second Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 15 transactions to execute per second.
  • 16. Database UsersDatabase Users Actors on the Scene: They actually use andy y control the database content; and design, develop and maintain database applications D t b Ad i i t tDatabase Administrators Database Designers Software EngineersSoftware Engineers End-users Workers Behind the SceneWorkers Behind the Scene Those who design and develop the DBMS software and related tools. Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 16
  • 17. Database UsersDatabase Users Actors on the sceneActors on the scene Database administrators: Responsible for authorizing access to the database,p g , for coordinating and monitoring its use, acquiring software and hardware resources, controlling its use and monitoring efficiency of operationsand monitoring efficiency of operations. Database Designers: Responsible to define the content the structure theResponsible to define the content, the structure, the constraints, and functions or transactions against the database. They must communicate with the end users and understand their needs Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 17 end-users and understand their needs.
  • 18. Categories of End usersCategories of End-users Actors on the Scene: End-users: Are those who require access to the database for querying, updating, and generating reports. They are categorized as: Casual end-users: occasionally access the database, but they may need different information each time. Naive or parametric end-users: constantly update and queryNaive or parametric end-users: constantly update and query databases, using standard types of queries and updates. Sophisticated end-users: thoroughly familiarize themselves with the facilities of the DBMS so as to implement theirwith the facilities of the DBMS so as to implement their application to meet their complex requirements. Stand-alone end-users: maintain personal databases by using easy-to-use ready-made program packages Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 18 using easy to use ready made program packages.
  • 19. Advantages of Using the Database ApproachApproach Controlling redundancy in data storage and inControlling redundancy in data storage and in development and maintenance efforts. Sharing of data among multiple users.g g p Restricting unauthorized access to data. Providing persistent storage for program ObjectsProviding persistent storage for program Objects In Object-oriented DBMSs Providing Storage Structures (e.g. indexes) forProviding Storage Structures (e.g. indexes) for efficient Query Processing Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 19
  • 20. Advantages of Using the Database Approach (continued)Approach (continued) Providing backup and recovery services.Providing backup and recovery services. Providing multiple interfaces to different classes of users. Representing complex relationships among data. Enforcing integrity constraints on the databaseEnforcing integrity constraints on the database. Permitting actions using active rules triggers stored procedurestriggers, stored procedures Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 20
  • 21. Additional Implications of Using the Database ApproachDatabase Approach Potential for enforcing standards: for data item names, display formats, screens, report structures, Web page layouts, etc. Reduced application development time Flexibility to change data structures: When requirements change Availability of current information:y Extremely important for on-line transaction systems such as airline, hotel, car reservations. Economies of scale: Wasteful overlap of resources and personnel can be avoided by consolidating data and applications across departments. Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 21
  • 22. When not to use a DBMSWhen not to use a DBMS Main inhibitors (costs) of using a DBMS: Hi h i i i l i d ibl d f ddi i l h dHigh initial investment and possible need for additional hardware. Overhead for providing generality, security, concurrency control, recovery, and integrity functions. When a DBMS may be unnecessary:When a DBMS may be unnecessary: If the database and applications are simple, well defined, and not expected to change. If there are real-time requirements that may not be met because of DBMS h dDBMS overhead. If access to data by multiple users is not required When no DBMS may suffice: If the database system is not able to handle the complexity of dataIf the database system is not able to handle the complexity of data because of modeling limitations If the database users need special operations not supported by the DBMS. Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 22