SlideShare una empresa de Scribd logo
1 de 33
Database System Concepts, 6th Ed.
©Silberschatz, Korth and Sudarshan
See www.db-book.com for conditions on re-use
Chapter 1: Introduction
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Database Management System (DBMS)
n DBMS contains information about a particular enterprise
l Collection of interrelated data
l Set of programs to access the data
l An environment that is both convenient and efficient to use
n Database Applications:
l Banking: transactions
l Airlines: reservations, schedules
l Universities: registration, grades
l Sales: customers, products, purchases
l Online retailers: order tracking, customized recommendations
l Manufacturing: production, inventory, orders, supply chain
l Human resources: employee records, salaries, tax deductions
n Databases can be very large.
n Databases touch all aspects of our lives
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
University Database Example
n Application program examples
l Add new students, instructors, and courses
l Register students for courses, and generate class rosters
l Assign grades to students, compute grade point averages (GPA)
and generate transcripts
n In the early days, database applications were built directly on top of
file systems
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Drawbacks of using file systems to store data
l Data redundancy and inconsistency
4 Multiple file formats, duplication of information in different files
l Difficulty in accessing data
4 Need to write a new program to carry out each new task
l Data isolation — multiple files and formats
l Integrity problems
4 Integrity constraints (e.g., account balance > 0) become
“buried” in program code rather than being stated explicitly
4 Hard to add new constraints or change existing ones
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Drawbacks of using file systems to store data (Cont.)
l Atomicity of updates
4 Failures may leave database in an inconsistent state with partial updates
carried out
4 Example: Transfer of funds from one account to another should either
complete or not happen at all
l Concurrent access by multiple users
4 Concurrent access needed for performance
4 Uncontrolled concurrent accesses can lead to inconsistencies
– Example: Two people reading a balance (say 100) and updating it by
withdrawing money (say 50 each) at the same time
l Security problems
4 Hard to provide user access to some, but not all, data
Database systems offer solutions to all the above problems
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Levels of Abstraction
n Physical level: describes how a record (e.g., customer) is stored.
n Logical level: describes data stored in database, and the relationships
among the data.
type instructor = record
ID : string;
name : string;
dept_name : string;
salary : integer;
end;
n View level: application programs hide details of data types. Views can
also hide information (such as an employee’s salary) for security
purposes.
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
View of Data
An architecture for a database system
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Instances and Schemas
n Similar to types and variables in programming languages
n Schema – the logical structure of the database
l Example: The database consists of information about a set of customers and
accounts and the relationship between them
l Analogous to type information of a variable in a program
l Physical schema: database design at the physical level
l Logical schema: database design at the logical level
n Instance – the actual content of the database at a particular point in time
l Analogous to the value of a variable
n Physical Data Independence – the ability to modify the physical schema without
changing the logical schema
l Applications depend on the logical schema
l In general, the interfaces between the various levels and components should
be well defined so that changes in some parts do not seriously influence others.
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Data Models
n A collection of tools for describing
l Data
l Data relationships
l Data semantics
l Data constraints
n Relational model
n Entity-Relationship data model (mainly for database design)
n Object-based data models (Object-oriented and Object-relational)
n Semistructured data model (XML)
n Other older models:
l Network model
l Hierarchical model
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Relational Model
n Relational model (Chapter 2)
n Example of tabular data in the relational model
Columns
Row
s
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
A Sample Relational Database
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Data Manipulation Language (DML)
n Language for accessing and manipulating the data organized by the
appropriate data model
l DML also known as query language
n Two classes of languages
l Procedural – user specifies what data is required and how to get
those data
l Declarative (nonprocedural) – user specifies what data is
required without specifying how to get those data
n SQL is the most widely used query language
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Data Definition Language (DDL)
n Specification notation for defining the database schema
Example: create table instructor (
ID char(5),
name varchar(20),
dept_name varchar(20),
salary numeric(8,2))
n DDL compiler generates a set of table templates stored in a data dictionary
n Data dictionary contains metadata (i.e., data about data)
l Database schema
l Integrity constraints
4 Primary key (ID uniquely identifies instructors)
4 Referential integrity (references constraint in SQL)
– e.g. dept_name value in any instructor tuple must appear in
department relation
l Authorization
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
SQL
n SQL: widely used non-procedural language
l Example: Find the name of the instructor with ID 22222
select name
from instructor
where instructor.ID = ‘22222’
l Example: Find the ID and building of instructors in the Physics dept.
select instructor.ID, department.buildingfrom instructor,
departmentwhere instructor.dept_name = department.dept_name and
department.dept_name = ‘Physics’
n Application programs generally access databases through one of
l Language extensions to allow embedded SQL
l Application program interface (e.g., ODBC/JDBC) which allow SQL
queries to be sent to a database
n Chapters 3, 4 and 5
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Database Design
The process of designing the general structure of the database:
n Logical Design – Deciding on the database schema. Database design
requires that we find a “good” collection of relation schemas.
l Business decision – What attributes should we record in the
database?
l Computer Science decision – What relation schemas should we
have and how should the attributes be distributed among the various
relation schemas?
n Physical Design – Deciding on the physical layout of the database
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Database Design?
n Is there any problem with this design?
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Design Approaches
n Normalization Theory (Chapter 8)
l Formalize what designs are bad, and test for them
n Entity Relationship Model (Chapter 7)
l Models an enterprise as a collection of entities and relationships
4 Entity: a “thing” or “object” in the enterprise that is
distinguishable from other objects
– Described by a set of attributes
4 Relationship: an association among several entities
l Represented diagrammatically by an entity-relationship diagram:
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
The Entity-Relationship Model
n Models an enterprise as a collection of entities and relationships
l Entity: a “thing” or “object” in the enterprise that is distinguishable
from other objects
4 Described by a set of attributes
l Relationship: an association among several entities
n Represented diagrammatically by an entity-relationship diagram:
What happened to dept_name of instructor and student?
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Object-Relational Data Models
n Relational model: flat, “atomic” values
n Object Relational Data Models
l Extend the relational data model by including object orientation
and constructs to deal with added data types.
l Allow attributes of tuples to have complex types, including non-
atomic values such as nested relations.
l Preserve relational foundations, in particular the declarative
access to data, while extending modeling power.
l Provide upward compatibility with existing relational languages.
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
XML: Extensible Markup Language
n Defined by the WWW Consortium (W3C)
n Originally intended as a document markup language not a
database language
n The ability to specify new tags, and to create nested tag structures
made XML a great way to exchange data, not just documents
n XML has become the basis for all new generation data interchange
formats.
n A wide variety of tools is available for parsing, browsing and
querying XML documents/data
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Storage Management
n Storage manager is a program module that provides the interface
between the low-level data stored in the database and the application
programs and queries submitted to the system.
n The storage manager is responsible to the following tasks:
l Interaction with the file manager
l Efficient storing, retrieving and updating of data
n Issues:
l Storage access
l File organization
l Indexing and hashing
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Query Processing
1. Parsing and translation
2. Optimization
3. Evaluation
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Query Processing (Cont.)
n Alternative ways of evaluating a given query
l Equivalent expressions
l Different algorithms for each operation
n Cost difference between a good and a bad way of evaluating a query can
be enormous
n Need to estimate the cost of operations
l Depends critically on statistical information about relations which the
database must maintain
l Need to estimate statistics for intermediate results to compute cost of
complex expressions
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Transaction Management
n What if the system fails?
n What if more than one user is concurrently updating the same data?
n A transaction is a collection of operations that performs a single
logical function in a database application
n Transaction-management component ensures that the database
remains in a consistent (correct) state despite system failures (e.g.,
power failures and operating system crashes) and transaction failures.
n Concurrency-control manager controls the interaction among the
concurrent transactions, to ensure the consistency of the database.
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Database Users and Administrators
Database
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Database System Internals
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Database Architecture
The architecture of a database systems is greatly influenced by
the underlying computer system on which the database is running:
n Centralized
n Client-server
n Parallel (multi-processor)
n Distributed
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
History of Database Systems
n 1950s and early 1960s:
l Data processing using magnetic tapes for storage
4 Tapes provided only sequential access
l Punched cards for input
n Late 1960s and 1970s:
l Hard disks allowed direct access to data
l Network and hierarchical data models in widespread use
l Ted Codd defines the relational data model
4 Would win the ACM Turing Award for this work
4 IBM Research begins System R prototype
4 UC Berkeley begins Ingres prototype
l High-performance (for the era) transaction processing
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
History (cont.)
n 1980s:
l Research relational prototypes evolve into commercial systems
4 SQL becomes industrial standard
l Parallel and distributed database systems
l Object-oriented database systems
n 1990s:
l Large decision support and data-mining applications
l Large multi-terabyte data warehouses
l Emergence of Web commerce
n Early 2000s:
l XML and XQuery standards
l Automated database administration
n Later 2000s:
l Giant data storage systems
4 Google BigTable, Yahoo PNuts, Amazon, ..
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
End of Chapter 1
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Figure 1.02
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Figure 1.04
©Silberschatz, Korth and Sudarshan
1.*
Database System Concepts - 6th Edition
Figure 1.06

Más contenido relacionado

Similar a IT244 - Week 2 -Ch 1.pptx

UNIT-1 PPT.pptCS 3492 DBMS UNIT 1 to 5 overview Unit 1 slides including purpo...
UNIT-1 PPT.pptCS 3492 DBMS UNIT 1 to 5 overview Unit 1 slides including purpo...UNIT-1 PPT.pptCS 3492 DBMS UNIT 1 to 5 overview Unit 1 slides including purpo...
UNIT-1 PPT.pptCS 3492 DBMS UNIT 1 to 5 overview Unit 1 slides including purpo...SakkaravarthiS1
 
DownloadClassSessionFile (37).pdf
DownloadClassSessionFile (37).pdfDownloadClassSessionFile (37).pdf
DownloadClassSessionFile (37).pdfHanaBurhan1
 
Data base management systems ppt
Data base management systems pptData base management systems ppt
Data base management systems pptsuthi
 
sql-plsql-dbms-database-management-systen.ppt
sql-plsql-dbms-database-management-systen.pptsql-plsql-dbms-database-management-systen.ppt
sql-plsql-dbms-database-management-systen.pptultron0000000000
 
Database management system INTRODUCTION.ppt
Database management system INTRODUCTION.pptDatabase management system INTRODUCTION.ppt
Database management system INTRODUCTION.pptYashShirude1
 
Introduction to Database System Concepts
Introduction to Database System ConceptsIntroduction to Database System Concepts
Introduction to Database System ConceptsSDivya19
 
DBMS PPT 3.pptx
DBMS PPT 3.pptxDBMS PPT 3.pptx
DBMS PPT 3.pptxSanGeet25
 
Presentation on DBMS systems for IT Professionals
Presentation on DBMS systems for IT ProfessionalsPresentation on DBMS systems for IT Professionals
Presentation on DBMS systems for IT ProfessionalsTushar Agarwal
 

Similar a IT244 - Week 2 -Ch 1.pptx (20)

DBMS_Ch1
 DBMS_Ch1 DBMS_Ch1
DBMS_Ch1
 
GFGC CHIKKABASUR ( DBMS )
GFGC CHIKKABASUR ( DBMS )GFGC CHIKKABASUR ( DBMS )
GFGC CHIKKABASUR ( DBMS )
 
Ch1
Ch1Ch1
Ch1
 
SQL.pptx
SQL.pptxSQL.pptx
SQL.pptx
 
UNIT-1 PPT.pptCS 3492 DBMS UNIT 1 to 5 overview Unit 1 slides including purpo...
UNIT-1 PPT.pptCS 3492 DBMS UNIT 1 to 5 overview Unit 1 slides including purpo...UNIT-1 PPT.pptCS 3492 DBMS UNIT 1 to 5 overview Unit 1 slides including purpo...
UNIT-1 PPT.pptCS 3492 DBMS UNIT 1 to 5 overview Unit 1 slides including purpo...
 
Chapter 1
Chapter 1Chapter 1
Chapter 1
 
DownloadClassSessionFile (37).pdf
DownloadClassSessionFile (37).pdfDownloadClassSessionFile (37).pdf
DownloadClassSessionFile (37).pdf
 
Data base management systems ppt
Data base management systems pptData base management systems ppt
Data base management systems ppt
 
sql-plsql-dbms-database-management-systen.ppt
sql-plsql-dbms-database-management-systen.pptsql-plsql-dbms-database-management-systen.ppt
sql-plsql-dbms-database-management-systen.ppt
 
Database management system INTRODUCTION.ppt
Database management system INTRODUCTION.pptDatabase management system INTRODUCTION.ppt
Database management system INTRODUCTION.ppt
 
ch6.pptx
ch6.pptxch6.pptx
ch6.pptx
 
Ch1
Ch1Ch1
Ch1
 
Introduction to Database System Concepts
Introduction to Database System ConceptsIntroduction to Database System Concepts
Introduction to Database System Concepts
 
DBMS PPT 3.pptx
DBMS PPT 3.pptxDBMS PPT 3.pptx
DBMS PPT 3.pptx
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
PPT (2).ppt
PPT (2).pptPPT (2).ppt
PPT (2).ppt
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
ch1.ppt
ch1.pptch1.ppt
ch1.ppt
 
ch1.pdf
ch1.pdfch1.pdf
ch1.pdf
 
Presentation on DBMS systems for IT Professionals
Presentation on DBMS systems for IT ProfessionalsPresentation on DBMS systems for IT Professionals
Presentation on DBMS systems for IT Professionals
 

Último

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...apidays
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...apidays
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodJuan lago vázquez
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FMESafe Software
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MIND CTI
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityWSO2
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistandanishmna97
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamUiPathCommunity
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Victor Rentea
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAndrey Devyatkin
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Zilliz
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyKhushali Kathiriya
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Victor Rentea
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...DianaGray10
 

Último (20)

Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
Apidays New York 2024 - APIs in 2030: The Risk of Technological Sleepwalk by ...
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers:  A Deep Dive into Serverless Spatial Data and FMECloud Frontiers:  A Deep Dive into Serverless Spatial Data and FME
Cloud Frontiers: A Deep Dive into Serverless Spatial Data and FME
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
Platformless Horizons for Digital Adaptability
Platformless Horizons for Digital AdaptabilityPlatformless Horizons for Digital Adaptability
Platformless Horizons for Digital Adaptability
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..Understanding the FAA Part 107 License ..
Understanding the FAA Part 107 License ..
 
WSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering DevelopersWSO2's API Vision: Unifying Control, Empowering Developers
WSO2's API Vision: Unifying Control, Empowering Developers
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)Introduction to Multilingual Retrieval Augmented Generation (RAG)
Introduction to Multilingual Retrieval Augmented Generation (RAG)
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
Modular Monolith - a Practical Alternative to Microservices @ Devoxx UK 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 

IT244 - Week 2 -Ch 1.pptx

  • 1. Database System Concepts, 6th Ed. ©Silberschatz, Korth and Sudarshan See www.db-book.com for conditions on re-use Chapter 1: Introduction
  • 2. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Database Management System (DBMS) n DBMS contains information about a particular enterprise l Collection of interrelated data l Set of programs to access the data l An environment that is both convenient and efficient to use n Database Applications: l Banking: transactions l Airlines: reservations, schedules l Universities: registration, grades l Sales: customers, products, purchases l Online retailers: order tracking, customized recommendations l Manufacturing: production, inventory, orders, supply chain l Human resources: employee records, salaries, tax deductions n Databases can be very large. n Databases touch all aspects of our lives
  • 3. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition University Database Example n Application program examples l Add new students, instructors, and courses l Register students for courses, and generate class rosters l Assign grades to students, compute grade point averages (GPA) and generate transcripts n In the early days, database applications were built directly on top of file systems
  • 4. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Drawbacks of using file systems to store data l Data redundancy and inconsistency 4 Multiple file formats, duplication of information in different files l Difficulty in accessing data 4 Need to write a new program to carry out each new task l Data isolation — multiple files and formats l Integrity problems 4 Integrity constraints (e.g., account balance > 0) become “buried” in program code rather than being stated explicitly 4 Hard to add new constraints or change existing ones
  • 5. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Drawbacks of using file systems to store data (Cont.) l Atomicity of updates 4 Failures may leave database in an inconsistent state with partial updates carried out 4 Example: Transfer of funds from one account to another should either complete or not happen at all l Concurrent access by multiple users 4 Concurrent access needed for performance 4 Uncontrolled concurrent accesses can lead to inconsistencies – Example: Two people reading a balance (say 100) and updating it by withdrawing money (say 50 each) at the same time l Security problems 4 Hard to provide user access to some, but not all, data Database systems offer solutions to all the above problems
  • 6. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Levels of Abstraction n Physical level: describes how a record (e.g., customer) is stored. n Logical level: describes data stored in database, and the relationships among the data. type instructor = record ID : string; name : string; dept_name : string; salary : integer; end; n View level: application programs hide details of data types. Views can also hide information (such as an employee’s salary) for security purposes.
  • 7. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition View of Data An architecture for a database system
  • 8. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Instances and Schemas n Similar to types and variables in programming languages n Schema – the logical structure of the database l Example: The database consists of information about a set of customers and accounts and the relationship between them l Analogous to type information of a variable in a program l Physical schema: database design at the physical level l Logical schema: database design at the logical level n Instance – the actual content of the database at a particular point in time l Analogous to the value of a variable n Physical Data Independence – the ability to modify the physical schema without changing the logical schema l Applications depend on the logical schema l In general, the interfaces between the various levels and components should be well defined so that changes in some parts do not seriously influence others.
  • 9. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Data Models n A collection of tools for describing l Data l Data relationships l Data semantics l Data constraints n Relational model n Entity-Relationship data model (mainly for database design) n Object-based data models (Object-oriented and Object-relational) n Semistructured data model (XML) n Other older models: l Network model l Hierarchical model
  • 10. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Relational Model n Relational model (Chapter 2) n Example of tabular data in the relational model Columns Row s
  • 11. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition A Sample Relational Database
  • 12. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Data Manipulation Language (DML) n Language for accessing and manipulating the data organized by the appropriate data model l DML also known as query language n Two classes of languages l Procedural – user specifies what data is required and how to get those data l Declarative (nonprocedural) – user specifies what data is required without specifying how to get those data n SQL is the most widely used query language
  • 13. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Data Definition Language (DDL) n Specification notation for defining the database schema Example: create table instructor ( ID char(5), name varchar(20), dept_name varchar(20), salary numeric(8,2)) n DDL compiler generates a set of table templates stored in a data dictionary n Data dictionary contains metadata (i.e., data about data) l Database schema l Integrity constraints 4 Primary key (ID uniquely identifies instructors) 4 Referential integrity (references constraint in SQL) – e.g. dept_name value in any instructor tuple must appear in department relation l Authorization
  • 14. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition SQL n SQL: widely used non-procedural language l Example: Find the name of the instructor with ID 22222 select name from instructor where instructor.ID = ‘22222’ l Example: Find the ID and building of instructors in the Physics dept. select instructor.ID, department.buildingfrom instructor, departmentwhere instructor.dept_name = department.dept_name and department.dept_name = ‘Physics’ n Application programs generally access databases through one of l Language extensions to allow embedded SQL l Application program interface (e.g., ODBC/JDBC) which allow SQL queries to be sent to a database n Chapters 3, 4 and 5
  • 15. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Database Design The process of designing the general structure of the database: n Logical Design – Deciding on the database schema. Database design requires that we find a “good” collection of relation schemas. l Business decision – What attributes should we record in the database? l Computer Science decision – What relation schemas should we have and how should the attributes be distributed among the various relation schemas? n Physical Design – Deciding on the physical layout of the database
  • 16. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Database Design? n Is there any problem with this design?
  • 17. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Design Approaches n Normalization Theory (Chapter 8) l Formalize what designs are bad, and test for them n Entity Relationship Model (Chapter 7) l Models an enterprise as a collection of entities and relationships 4 Entity: a “thing” or “object” in the enterprise that is distinguishable from other objects – Described by a set of attributes 4 Relationship: an association among several entities l Represented diagrammatically by an entity-relationship diagram:
  • 18. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition The Entity-Relationship Model n Models an enterprise as a collection of entities and relationships l Entity: a “thing” or “object” in the enterprise that is distinguishable from other objects 4 Described by a set of attributes l Relationship: an association among several entities n Represented diagrammatically by an entity-relationship diagram: What happened to dept_name of instructor and student?
  • 19. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Object-Relational Data Models n Relational model: flat, “atomic” values n Object Relational Data Models l Extend the relational data model by including object orientation and constructs to deal with added data types. l Allow attributes of tuples to have complex types, including non- atomic values such as nested relations. l Preserve relational foundations, in particular the declarative access to data, while extending modeling power. l Provide upward compatibility with existing relational languages.
  • 20. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition XML: Extensible Markup Language n Defined by the WWW Consortium (W3C) n Originally intended as a document markup language not a database language n The ability to specify new tags, and to create nested tag structures made XML a great way to exchange data, not just documents n XML has become the basis for all new generation data interchange formats. n A wide variety of tools is available for parsing, browsing and querying XML documents/data
  • 21. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Storage Management n Storage manager is a program module that provides the interface between the low-level data stored in the database and the application programs and queries submitted to the system. n The storage manager is responsible to the following tasks: l Interaction with the file manager l Efficient storing, retrieving and updating of data n Issues: l Storage access l File organization l Indexing and hashing
  • 22. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Query Processing 1. Parsing and translation 2. Optimization 3. Evaluation
  • 23. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Query Processing (Cont.) n Alternative ways of evaluating a given query l Equivalent expressions l Different algorithms for each operation n Cost difference between a good and a bad way of evaluating a query can be enormous n Need to estimate the cost of operations l Depends critically on statistical information about relations which the database must maintain l Need to estimate statistics for intermediate results to compute cost of complex expressions
  • 24. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Transaction Management n What if the system fails? n What if more than one user is concurrently updating the same data? n A transaction is a collection of operations that performs a single logical function in a database application n Transaction-management component ensures that the database remains in a consistent (correct) state despite system failures (e.g., power failures and operating system crashes) and transaction failures. n Concurrency-control manager controls the interaction among the concurrent transactions, to ensure the consistency of the database.
  • 25. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Database Users and Administrators Database
  • 26. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Database System Internals
  • 27. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Database Architecture The architecture of a database systems is greatly influenced by the underlying computer system on which the database is running: n Centralized n Client-server n Parallel (multi-processor) n Distributed
  • 28. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition History of Database Systems n 1950s and early 1960s: l Data processing using magnetic tapes for storage 4 Tapes provided only sequential access l Punched cards for input n Late 1960s and 1970s: l Hard disks allowed direct access to data l Network and hierarchical data models in widespread use l Ted Codd defines the relational data model 4 Would win the ACM Turing Award for this work 4 IBM Research begins System R prototype 4 UC Berkeley begins Ingres prototype l High-performance (for the era) transaction processing
  • 29. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition History (cont.) n 1980s: l Research relational prototypes evolve into commercial systems 4 SQL becomes industrial standard l Parallel and distributed database systems l Object-oriented database systems n 1990s: l Large decision support and data-mining applications l Large multi-terabyte data warehouses l Emergence of Web commerce n Early 2000s: l XML and XQuery standards l Automated database administration n Later 2000s: l Giant data storage systems 4 Google BigTable, Yahoo PNuts, Amazon, ..
  • 30. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition End of Chapter 1
  • 31. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Figure 1.02
  • 32. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Figure 1.04
  • 33. ©Silberschatz, Korth and Sudarshan 1.* Database System Concepts - 6th Edition Figure 1.06