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

3 Level Architecture
3 Level Architecture3 Level Architecture
3 Level ArchitectureAdeel Rasheed
 
Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Jotham Gadot
 
Lecture 01 introduction to database
Lecture 01 introduction to databaseLecture 01 introduction to database
Lecture 01 introduction to databaseemailharmeet
 
All data models in dbms
All data models in dbmsAll data models in dbms
All data models in dbmsNaresh Kumar
 
File system vs database
File system vs databaseFile system vs database
File system vs databaseSanthiNivas
 
Introduction to DBMS(For College Seminars)
Introduction to DBMS(For College Seminars)Introduction to DBMS(For College Seminars)
Introduction to DBMS(For College Seminars)Naman Joshi
 
Relational Database Design
Relational Database DesignRelational Database Design
Relational Database DesignArchit Saxena
 
Dbms Introduction and Basics
Dbms Introduction and BasicsDbms Introduction and Basics
Dbms Introduction and BasicsSHIKHA GAUTAM
 
Relational Data Model Introduction
Relational Data Model IntroductionRelational Data Model Introduction
Relational Data Model IntroductionNishant Munjal
 
data modeling and models
data modeling and modelsdata modeling and models
data modeling and modelssabah N
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentationsameerraaj
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databasesBryan Corpuz
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to DatabaseSiti Ismail
 

What's hot (20)

Advanced Database System
Advanced Database SystemAdvanced Database System
Advanced Database System
 
database
databasedatabase
database
 
INTRODUCTION TO DATABASE
INTRODUCTION TO DATABASEINTRODUCTION TO DATABASE
INTRODUCTION TO DATABASE
 
Data Models
Data ModelsData Models
Data Models
 
3 Level Architecture
3 Level Architecture3 Level Architecture
3 Level Architecture
 
Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01Fundamentals of Database ppt ch01
Fundamentals of Database ppt ch01
 
Lecture 01 introduction to database
Lecture 01 introduction to databaseLecture 01 introduction to database
Lecture 01 introduction to database
 
All data models in dbms
All data models in dbmsAll data models in dbms
All data models in dbms
 
File system vs database
File system vs databaseFile system vs database
File system vs database
 
Database Chapter 3
Database Chapter 3Database Chapter 3
Database Chapter 3
 
Introduction to DBMS(For College Seminars)
Introduction to DBMS(For College Seminars)Introduction to DBMS(For College Seminars)
Introduction to DBMS(For College Seminars)
 
Relational Database Design
Relational Database DesignRelational Database Design
Relational Database Design
 
Database & Database Users
Database & Database UsersDatabase & Database Users
Database & Database Users
 
Dbms Introduction and Basics
Dbms Introduction and BasicsDbms Introduction and Basics
Dbms Introduction and Basics
 
Relational Data Model Introduction
Relational Data Model IntroductionRelational Data Model Introduction
Relational Data Model Introduction
 
data modeling and models
data modeling and modelsdata modeling and models
data modeling and models
 
Database management system presentation
Database management system presentationDatabase management system presentation
Database management system presentation
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
 
Introduction to Database
Introduction to DatabaseIntroduction to Database
Introduction to Database
 
DATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEMDATABASE MANAGEMENT SYSTEM
DATABASE MANAGEMENT SYSTEM
 

Viewers also liked

1 introduction databases and database users
1 introduction databases and database users1 introduction databases and database users
1 introduction databases and database usersKumar
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databasesCarol Ansel
 
Database System Concepts and Architecture
Database System Concepts and ArchitectureDatabase System Concepts and Architecture
Database System Concepts and Architecturesontumax
 
Introduction databases and MYSQL
Introduction databases and MYSQLIntroduction databases and MYSQL
Introduction databases and MYSQLNaeem Junejo
 
Quarterly report (Q4) 2007
Quarterly report (Q4) 2007Quarterly report (Q4) 2007
Quarterly report (Q4) 2007Tele2
 
A (short) introduction to Databases
A (short) introduction to DatabasesA (short) introduction to Databases
A (short) introduction to DatabasesNicola Bernardini
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databasesAashima Wadhwa
 
Introduction to Databases
Introduction to DatabasesIntroduction to Databases
Introduction to DatabasesRam Kedem
 
Sixth sense technolgy
Sixth sense technolgySixth sense technolgy
Sixth sense technolgyAnvesh Ranga
 
Slide 4 dbms users
Slide 4 dbms usersSlide 4 dbms users
Slide 4 dbms usersVisakh V
 
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!Mohammad kermani
 
Network internet
Network internetNetwork internet
Network internetKumar
 
[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 indexingAnusAhmad
 
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)

1 introduction databases and database users
1 introduction databases and database users1 introduction databases and database users
1 introduction databases and database users
 
Chapter1
Chapter1Chapter1
Chapter1
 
Introduction to databases
Introduction to databasesIntroduction to databases
Introduction to databases
 
Database System Concepts and Architecture
Database System Concepts and ArchitectureDatabase System Concepts and Architecture
Database System Concepts and Architecture
 
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
 
Slide 4 dbms users
Slide 4 dbms usersSlide 4 dbms users
Slide 4 dbms users
 
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
 

Similar to Introduction: Databases and Database Users

Ch01 database-conceptsppt4207
Ch01 database-conceptsppt4207Ch01 database-conceptsppt4207
Ch01 database-conceptsppt4207Burhan Chaudhry
 
cse3330-spring14-Ch1.ppt
cse3330-spring14-Ch1.pptcse3330-spring14-Ch1.ppt
cse3330-spring14-Ch1.pptredmont2
 
chapter 01 introduction to Database.ppt
chapter 01 introduction to Database.pptchapter 01 introduction to Database.ppt
chapter 01 introduction to Database.pptNuurAxmed2
 
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 StudentAkhilpandey36
 
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.pptKalsoomTahir2
 
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.pdfBasirKhan22
 
Chapter02.ppt
Chapter02.pptChapter02.ppt
Chapter02.pptMemMem25
 
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 UsersHarsh Verdhan Raj
 

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
 
Chapter01.ppt
Chapter01.pptChapter01.ppt
Chapter01.ppt
 
Chapter01 (3).ppt
Chapter01 (3).pptChapter01 (3).ppt
Chapter01 (3).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
 
Chapter02
Chapter02Chapter02
Chapter02
 
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
 
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
 
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

Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)Suman Mia
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...ranjana rawat
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝soniya singh
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSCAESB
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsCall Girls in Nagpur High Profile
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...srsj9000
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxupamatechverse
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSSIVASHANKAR N
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escortsranjana rawat
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxpurnimasatapathy1234
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSRajkumarAkumalla
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...ranjana rawat
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations120cr0395
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130Suhani Kapoor
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Christo Ananth
 

Recently uploaded (20)

DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINEDJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
DJARUM4D - SLOT GACOR ONLINE | SLOT DEMO ONLINE
 
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
★ CALL US 9953330565 ( HOT Young Call Girls In Badarpur delhi NCR
 
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)Software Development Life Cycle By  Team Orange (Dept. of Pharmacy)
Software Development Life Cycle By Team Orange (Dept. of Pharmacy)
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
The Most Attractive Pune Call Girls Budhwar Peth 8250192130 Will You Miss Thi...
 
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur EscortsCall Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
Call Girls Service Nagpur Tanvi Call 7001035870 Meet With Nagpur Escorts
 
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
Model Call Girl in Narela Delhi reach out to us at 🔝8264348440🔝
 
GDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentationGDSC ASEB Gen AI study jams presentation
GDSC ASEB Gen AI study jams presentation
 
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Meera Call 7001035870 Meet With Nagpur Escorts
 
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
Gfe Mayur Vihar Call Girls Service WhatsApp -> 9999965857 Available 24x7 ^ De...
 
Introduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptxIntroduction and different types of Ethernet.pptx
Introduction and different types of Ethernet.pptx
 
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLSMANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
MANUFACTURING PROCESS-II UNIT-5 NC MACHINE TOOLS
 
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur EscortsHigh Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
High Profile Call Girls Nagpur Isha Call 7001035870 Meet With Nagpur Escorts
 
Microscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptxMicroscopic Analysis of Ceramic Materials.pptx
Microscopic Analysis of Ceramic Materials.pptx
 
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICSHARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
HARDNESS, FRACTURE TOUGHNESS AND STRENGTH OF CERAMICS
 
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
(SHREYA) Chakan Call Girls Just Call 7001035870 [ Cash on Delivery ] Pune Esc...
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Extrusion Processes and Their Limitations
Extrusion Processes and Their LimitationsExtrusion Processes and Their Limitations
Extrusion Processes and Their Limitations
 
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
VIP Call Girls Service Kondapur Hyderabad Call +91-8250192130
 
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
Call for Papers - African Journal of Biological Sciences, E-ISSN: 2663-2187, ...
 

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