SlideShare a Scribd company logo
1 of 22
Download to read offline
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

What's hot

Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentation
sameerraaj
 
Data base management system
Data base management systemData base management system
Data base management system
Navneet Jingar
 
1. Introduction to DBMS
1. Introduction to DBMS1. Introduction to DBMS
1. Introduction to DBMS
koolkampus
 

What's hot (20)

Dbms Introduction and Basics
Dbms Introduction and BasicsDbms Introduction and Basics
Dbms Introduction and Basics
 
Characteristic of dabase approach
Characteristic of dabase approachCharacteristic of dabase approach
Characteristic of dabase approach
 
File systems versus a dbms
File systems versus a dbmsFile systems versus a dbms
File systems versus a dbms
 
Fundamentals of Database system
Fundamentals of Database systemFundamentals of Database system
Fundamentals of Database system
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentation
 
Data base management system
Data base management systemData base management system
Data base management system
 
Distributed Database Management System
Distributed Database Management SystemDistributed Database Management System
Distributed Database Management System
 
Database System Concepts and Architecture
Database System Concepts and ArchitectureDatabase System Concepts and Architecture
Database System Concepts and Architecture
 
DBMS an Example
DBMS an ExampleDBMS an Example
DBMS an Example
 
Rdbms
RdbmsRdbms
Rdbms
 
database
databasedatabase
database
 
Data Base Management System
Data Base Management SystemData Base Management System
Data Base Management System
 
Object Oriented Database Management System
Object Oriented Database Management SystemObject Oriented Database Management System
Object Oriented Database Management System
 
Dbms database models
Dbms database modelsDbms database models
Dbms database models
 
Object Relational Database Management System(ORDBMS)
Object Relational Database Management System(ORDBMS)Object Relational Database Management System(ORDBMS)
Object Relational Database Management System(ORDBMS)
 
1. Introduction to DBMS
1. Introduction to DBMS1. Introduction to DBMS
1. Introduction to DBMS
 
Relational database
Relational database Relational database
Relational database
 
Database Management System
Database Management SystemDatabase Management System
Database Management System
 
Dbms
DbmsDbms
Dbms
 
Slide 4 dbms users
Slide 4 dbms usersSlide 4 dbms users
Slide 4 dbms users
 

Viewers also liked

Sixth sense technolgy
Sixth sense technolgySixth sense technolgy
Sixth sense technolgy
Anvesh Ranga
 
Network internet
Network internetNetwork internet
Network internet
Kumar
 
Users of Database Systems and Components of Database Environment
Users of Database Systems and Components of Database Environment Users of Database Systems and Components of Database Environment
Users of Database Systems and Components of Database Environment
Farkhanda Kiran
 

Viewers also liked (20)

Chapter1
Chapter1Chapter1
Chapter1
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
 
Dbms slides
Dbms slidesDbms slides
Dbms slides
 
En ch01
En ch01En ch01
En ch01
 
Sql
SqlSql
Sql
 
Introduction databases and MYSQL
Introduction databases and MYSQLIntroduction databases and MYSQL
Introduction databases and MYSQL
 
Quarterly report (Q4) 2007
Quarterly report (Q4) 2007Quarterly report (Q4) 2007
Quarterly report (Q4) 2007
 
Ch 9 S Q L
Ch 9  S Q LCh 9  S Q L
Ch 9 S Q L
 
A (short) introduction to Databases
A (short) introduction to DatabasesA (short) introduction to Databases
A (short) introduction to Databases
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
 
Introduction to Databases
Introduction to DatabasesIntroduction to Databases
Introduction to Databases
 
Sixth sense technolgy
Sixth sense technolgySixth sense technolgy
Sixth sense technolgy
 
W 8 introduction to database
W 8  introduction to databaseW 8  introduction to database
W 8 introduction to database
 
Introduction to network ( Internet and its layer) Or how internet really works!
Introduction to network ( Internet and its layer) Or how internet really works!Introduction to network ( Internet and its layer) Or how internet really works!
Introduction to network ( Internet and its layer) Or how internet really works!
 
Network internet
Network internetNetwork internet
Network internet
 
[Www.pkbulk.blogspot.com]file and indexing
[Www.pkbulk.blogspot.com]file and indexing[Www.pkbulk.blogspot.com]file and indexing
[Www.pkbulk.blogspot.com]file and indexing
 
Users of Database Systems and Components of Database Environment
Users of Database Systems and Components of Database Environment Users of Database Systems and Components of Database Environment
Users of Database Systems and Components of Database Environment
 
Database Systems - SQL - DCL Statements (Chapter 3/4)
Database Systems - SQL - DCL Statements (Chapter 3/4)Database Systems - SQL - DCL Statements (Chapter 3/4)
Database Systems - SQL - DCL Statements (Chapter 3/4)
 
Lecture 4 software process model (2)
Lecture 4   software process model (2)Lecture 4   software process model (2)
Lecture 4 software process model (2)
 
Null values, insert, delete and update in database
Null values, insert, delete and update in databaseNull values, insert, delete and update in database
Null values, insert, delete and update in database
 

Similar to Introduction: Databases and Database Users

cse3330-spring14-Ch1.ppt
cse3330-spring14-Ch1.pptcse3330-spring14-Ch1.ppt
cse3330-spring14-Ch1.ppt
redmont2
 
Basic to Advance DBMS BOOK for School and Graduate Student
Basic to Advance DBMS BOOK for School and Graduate StudentBasic to Advance DBMS BOOK for School and Graduate Student
Basic to Advance DBMS BOOK for School and Graduate Student
Akhilpandey36
 
ch02-Database System Concepts and Architecture.pdf
ch02-Database System Concepts and Architecture.pdfch02-Database System Concepts and Architecture.pdf
ch02-Database System Concepts and Architecture.pdf
BasirKhan22
 
ch02-Database System Concepts and Architecture.ppt
ch02-Database System Concepts and Architecture.pptch02-Database System Concepts and Architecture.ppt
ch02-Database System Concepts and Architecture.ppt
KalsoomTahir2
 

Similar to Introduction: Databases and Database Users (20)

Chapter01
Chapter01Chapter01
Chapter01
 
Ch01 database-conceptsppt4207
Ch01 database-conceptsppt4207Ch01 database-conceptsppt4207
Ch01 database-conceptsppt4207
 
cse3330-spring14-Ch1.ppt
cse3330-spring14-Ch1.pptcse3330-spring14-Ch1.ppt
cse3330-spring14-Ch1.ppt
 
Chapter01.ppt
Chapter01.pptChapter01.ppt
Chapter01.ppt
 
chapter 01 introduction to Database.ppt
chapter 01 introduction to Database.pptchapter 01 introduction to Database.ppt
chapter 01 introduction to Database.ppt
 
Basic to Advance DBMS BOOK for School and Graduate Student
Basic to Advance DBMS BOOK for School and Graduate StudentBasic to Advance DBMS BOOK for School and Graduate Student
Basic to Advance DBMS BOOK for School and Graduate Student
 
Chapter01.ppt
Chapter01.pptChapter01.ppt
Chapter01.ppt
 
Chapter01 (3).ppt
Chapter01 (3).pptChapter01 (3).ppt
Chapter01 (3).ppt
 
Chapter01.ppt
Chapter01.pptChapter01.ppt
Chapter01.ppt
 
Chapter02
Chapter02Chapter02
Chapter02
 
ch02-Database System Concepts and Architecture.pdf
ch02-Database System Concepts and Architecture.pdfch02-Database System Concepts and Architecture.pdf
ch02-Database System Concepts and Architecture.pdf
 
ch02-Database System Concepts and Architecture.ppt
ch02-Database System Concepts and Architecture.pptch02-Database System Concepts and Architecture.ppt
ch02-Database System Concepts and Architecture.ppt
 
Chapter one
Chapter oneChapter one
Chapter one
 
ENCh01.ppt
ENCh01.pptENCh01.ppt
ENCh01.ppt
 
Chapter01.ppt
Chapter01.pptChapter01.ppt
Chapter01.ppt
 
Chapter01.ppt
Chapter01.pptChapter01.ppt
Chapter01.ppt
 
Database Chapter 1
Database Chapter 1Database Chapter 1
Database Chapter 1
 
Database2.pdf
Database2.pdfDatabase2.pdf
Database2.pdf
 
Chapter02.ppt
Chapter02.pptChapter02.ppt
Chapter02.ppt
 
FDS (Sixth Edition) | C1 | Databases and Database Users
FDS (Sixth Edition) | C1 | Databases and Database UsersFDS (Sixth Edition) | C1 | Databases and Database Users
FDS (Sixth Edition) | C1 | Databases and Database Users
 

Recently uploaded

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
Epec Engineered Technologies
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
Neometrix_Engineering_Pvt_Ltd
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Kandungan 087776558899
 

Recently uploaded (20)

22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf22-prompt engineering noted slide shown.pdf
22-prompt engineering noted slide shown.pdf
 
Introduction to Serverless with AWS Lambda
Introduction to Serverless with AWS LambdaIntroduction to Serverless with AWS Lambda
Introduction to Serverless with AWS Lambda
 
Unit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdfUnit 2- Effective stress & Permeability.pdf
Unit 2- Effective stress & Permeability.pdf
 
Thermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - VThermal Engineering-R & A / C - unit - V
Thermal Engineering-R & A / C - unit - V
 
chapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineeringchapter 5.pptx: drainage and irrigation engineering
chapter 5.pptx: drainage and irrigation engineering
 
Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024Water Industry Process Automation & Control Monthly - April 2024
Water Industry Process Automation & Control Monthly - April 2024
 
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced LoadsFEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
FEA Based Level 3 Assessment of Deformed Tanks with Fluid Induced Loads
 
data_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdfdata_management_and _data_science_cheat_sheet.pdf
data_management_and _data_science_cheat_sheet.pdf
 
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdfONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
ONLINE FOOD ORDER SYSTEM PROJECT REPORT.pdf
 
UNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its PerformanceUNIT - IV - Air Compressors and its Performance
UNIT - IV - Air Compressors and its Performance
 
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
Hazard Identification (HAZID) vs. Hazard and Operability (HAZOP): A Comparati...
 
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...Bhosari ( Call Girls ) Pune  6297143586  Hot Model With Sexy Bhabi Ready For ...
Bhosari ( Call Girls ) Pune 6297143586 Hot Model With Sexy Bhabi Ready For ...
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086Minimum and Maximum Modes of microprocessor 8086
Minimum and Maximum Modes of microprocessor 8086
 
Integrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - NeometrixIntegrated Test Rig For HTFE-25 - Neometrix
Integrated Test Rig For HTFE-25 - Neometrix
 
Work-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptxWork-Permit-Receiver-in-Saudi-Aramco.pptx
Work-Permit-Receiver-in-Saudi-Aramco.pptx
 
Block diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.pptBlock diagram reduction techniques in control systems.ppt
Block diagram reduction techniques in control systems.ppt
 
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
VIP Model Call Girls Kothrud ( Pune ) Call ON 8005736733 Starting From 5K to ...
 
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak HamilCara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
Cara Menggugurkan Sperma Yang Masuk Rahim Biyar Tidak Hamil
 

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