SlideShare a Scribd company logo
4
Most read
14
Most read
17
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
PPT
Database Chapter 2
PDF
2 database system concepts and architecture
PPS
Architecture of-dbms-and-data-independence
PPTX
Database systems - Chapter 1
PPT
FDS (Sixth Edition) | C1 | Databases and Database Users
PPTX
Database system environment ppt.
PPT
Introduction & history of dbms
1 introduction databases and database users
Database Chapter 2
2 database system concepts and architecture
Architecture of-dbms-and-data-independence
Database systems - Chapter 1
FDS (Sixth Edition) | C1 | Databases and Database Users
Database system environment ppt.
Introduction & history of dbms

What's hot (20)

PPT
Elmasri Navathe DBMS Unit-1 ppt
PPT
1. Introduction to DBMS
PPTX
Database Management System
PPTX
DBMS and its Models
PPT
Lecture 01 introduction to database
PPT
Files Vs DataBase
PDF
Users of dbms
PPT
File organization 1
PPTX
Introduction to databases
PPTX
Object relational database management system
PPTX
PPTX
Data base management system
PDF
Enhanced Entity-Relationship (EER) Modeling
PPTX
Relational Data Model Introduction
PDF
Introduction to Database Management System
PPT
Database Chapter 3
PPTX
PPT
Data Base System Application - Unit 7
PPTX
SQL(DDL & DML)
PPTX
Introduction to Database
Elmasri Navathe DBMS Unit-1 ppt
1. Introduction to DBMS
Database Management System
DBMS and its Models
Lecture 01 introduction to database
Files Vs DataBase
Users of dbms
File organization 1
Introduction to databases
Object relational database management system
Data base management system
Enhanced Entity-Relationship (EER) Modeling
Relational Data Model Introduction
Introduction to Database Management System
Database Chapter 3
Data Base System Application - Unit 7
SQL(DDL & DML)
Introduction to Database
Ad

Viewers also liked (20)

PPTX
Chapter1
PPT
Introduction to databases
PDF
Database System Concepts and Architecture
PPTX
Dbms slides
PPT
Database management system presentation
PPT
En ch01
PPTX
PPTX
Introduction databases and MYSQL
PDF
Quarterly report (Q4) 2007
PPT
Ch 9 S Q L
PDF
A (short) introduction to Databases
PDF
Introduction to Databases
PPT
Sixth sense technolgy
PPTX
Slide 4 dbms users
PPT
W 8 introduction to database
PPTX
Introduction to network ( Internet and its layer) Or how internet really works!
PDF
Network internet
PPT
[Www.pkbulk.blogspot.com]file and indexing
PPTX
Users of Database Systems and Components of Database Environment
PPTX
Database Systems - SQL - DCL Statements (Chapter 3/4)
Chapter1
Introduction to databases
Database System Concepts and Architecture
Dbms slides
Database management system presentation
En ch01
Introduction databases and MYSQL
Quarterly report (Q4) 2007
Ch 9 S Q L
A (short) introduction to Databases
Introduction to Databases
Sixth sense technolgy
Slide 4 dbms users
W 8 introduction to database
Introduction to network ( Internet and its layer) Or how internet really works!
Network internet
[Www.pkbulk.blogspot.com]file and indexing
Users of Database Systems and Components of Database Environment
Database Systems - SQL - DCL Statements (Chapter 3/4)
Ad

Similar to Introduction: Databases and Database Users (20)

PPT
Ch01 database-conceptsppt4207
PPT
introduction to database systems Chapter01.ppt
PPT
Ch01-Introduction Databases and Database Users.ppt
PPT
ch01-Introduction Databases and Database Users.ppt
PPT
Introduction to Database management system and characteristics
PPT
chapter 01 introduction to Database.ppt
PPT
Chapter01.ppt
PPT
cse3330-spring14-Ch1.ppt
PPT
Chapter01 database system in computer.ppt
PPT
Chapter01 (3).ppt
PDF
Basic to Advance DBMS BOOK for School and Graduate Student
PPT
Chapter01.ppt
PPT
Foundation of database systems -Database Systems.ppt
PPT
Chapter01.ppt
PDF
Chapter01.pdf
PPT
Chapte sdfbjsvfjsb shdvgsfjsdhvshyjhscdgppt
PPT
Chapter01.ppt
PPT
Chapter01.ppt
PDF
Chapter 1 data base system erd engineer .pdf
Ch01 database-conceptsppt4207
introduction to database systems Chapter01.ppt
Ch01-Introduction Databases and Database Users.ppt
ch01-Introduction Databases and Database Users.ppt
Introduction to Database management system and characteristics
chapter 01 introduction to Database.ppt
Chapter01.ppt
cse3330-spring14-Ch1.ppt
Chapter01 database system in computer.ppt
Chapter01 (3).ppt
Basic to Advance DBMS BOOK for School and Graduate Student
Chapter01.ppt
Foundation of database systems -Database Systems.ppt
Chapter01.ppt
Chapter01.pdf
Chapte sdfbjsvfjsb shdvgsfjsdhvshyjhscdgppt
Chapter01.ppt
Chapter01.ppt
Chapter 1 data base system erd engineer .pdf

Recently uploaded (20)

PPTX
Sustainable Sites - Green Building Construction
PDF
Structs to JSON How Go Powers REST APIs.pdf
PDF
Arduino robotics embedded978-1-4302-3184-4.pdf
DOCX
573137875-Attendance-Management-System-original
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
PPTX
Welding lecture in detail for understanding
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPTX
Lecture Notes Electrical Wiring System Components
PPTX
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
PPTX
OOP with Java - Java Introduction (Basics)
DOCX
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
PPTX
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
PPTX
Lesson 3_Tessellation.pptx finite Mathematics
PPTX
Geodesy 1.pptx...............................................
PPTX
CYBER-CRIMES AND SECURITY A guide to understanding
PDF
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
PDF
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026
Sustainable Sites - Green Building Construction
Structs to JSON How Go Powers REST APIs.pdf
Arduino robotics embedded978-1-4302-3184-4.pdf
573137875-Attendance-Management-System-original
bas. eng. economics group 4 presentation 1.pptx
CARTOGRAPHY AND GEOINFORMATION VISUALIZATION chapter1 NPTE (2).pptx
Welding lecture in detail for understanding
Internet of Things (IOT) - A guide to understanding
MET 305 2019 SCHEME MODULE 2 COMPLETE.pptx
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
Lecture Notes Electrical Wiring System Components
IOT PPTs Week 10 Lecture Material.pptx of NPTEL Smart Cities contd
OOP with Java - Java Introduction (Basics)
ASol_English-Language-Literature-Set-1-27-02-2023-converted.docx
Recipes for Real Time Voice AI WebRTC, SLMs and Open Source Software.pptx
Lesson 3_Tessellation.pptx finite Mathematics
Geodesy 1.pptx...............................................
CYBER-CRIMES AND SECURITY A guide to understanding
SM_6th-Sem__Cse_Internet-of-Things.pdf IOT
Mohammad Mahdi Farshadian CV - Prospective PhD Student 2026

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