Chapter 1
Chapter 1
Database System Concepts - 6th Edition 1.2 ©Silberschatz, Korth and Sudarshan
● Banking: transactions ■ In the early days, database applications were built directly on
top of file systems
● Airlines: reservations, schedules
● Universities: registration, grades
● Sales: customers, products, purchases
● Online retailers: order tracking, customized recommendations
● Manufacturing: production, inventory, orders, supply chain
● Human resources: employee records, salaries, tax deductions
■ Databases can be very large.
■ Databases touch all aspects of our lives
Database System Concepts - 6th Edition 1.3 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.5 ©Silberschatz, Korth and Sudarshan
Drawbacks of using file systems to store data Drawbacks of using file systems to store data (Cont.)
● Need to write a new program to carry out each new task ● Example: Transfer of funds from one account to another should
either complete or not happen at all
■ Data isolation
■ Concurrent access by multiple users
● Multiple files and formats
● Concurrent access needed for performance
■ Integrity problems
● Uncontrolled concurrent accesses can lead to inconsistencies
● Integrity constraints (e.g., account balance > 0) become “buried”
in program code rather than being stated explicitly 4 Example: Two people reading a balance (say 100) and
updating it by withdrawing money (say 50 each) at the same
● Hard to add new constraints or change existing ones time
■ Security problems
● Hard to provide user access to some, but not all, data
Database System Concepts - 6th Edition 1.6 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.7 ©Silberschatz, Korth and Sudarshan
Database System Concepts - 6th Edition 1.8 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.9 ©Silberschatz, Korth and Sudarshan
Instances and Schemas Data Models
■ Similar to types and variables in programming languages ■ A collection of tools for describing
Database System Concepts - 6th Edition 1.10 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.11 ©Silberschatz, Korth and Sudarshan
Rows
Database System Concepts - 6th Edition 1.12 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.13 ©Silberschatz, Korth and Sudarshan
Data Definition Language (DDL) Data Manipulation Language (DML)
■ Specification notation for defining the database schema ■ Language for accessing and manipulating the data organized
by the appropriate data model
Example: create table instructor (
ID char(5), ● DML also known as query language (technically incorrect)
name varchar(20),
■ Two classes of languages
dept_name varchar(20),
salary numeric(8,2)) ● Pure – used for proving properties about computational
■ DDL compiler generates a set of table templates stored in a data dictionary power and for optimization
■ Data dictionary contains metadata (i.e., data about data) 4 Relational Algebra
● Database schema 4 Tuple relational calculus
● Integrity constraints 4 Domain relational calculus
4 Primary key (ID uniquely identifies instructors) ● Commercial – used in commercial systems
● Authorization
4 SQL is the most widely used commercial language
4 Who can access what
Database System Concepts - 6th Edition 1.14 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.15 ©Silberschatz, Korth and Sudarshan
Database System Concepts - 6th Edition 1.20 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.21 ©Silberschatz, Korth and Sudarshan
Database Engine Storage Management
■ Storage manager ■ Storage manager is a program module that provides the interface
■ Query processing between the low-level data stored in the database and the application
programs and queries submitted to the system.
■ Transaction manager
■ The storage manager is responsible to the following tasks:
● Interaction with the OS file manager
● Efficient storing, retrieving and updating of data
■ Issues:
● Storage access
● File organization
● Indexing and hashing
Database System Concepts - 6th Edition 1.23 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.24 ©Silberschatz, Korth and Sudarshan
Database System Concepts - 6th Edition 1.25 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.27 ©Silberschatz, Korth and Sudarshan
Transaction Management Database Users and Administrators
■ What if the system fails?
■ What if more than one user is concurrently updating the same
data?
■ A transaction is a collection of operations that performs a single
logical function in a database application
■ 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.
■ Concurrency-control manager controls the interaction among
the concurrent transactions, to ensure the consistency of the
database. Database
Database System Concepts - 6th Edition 1.28 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.29 ©Silberschatz, Korth and Sudarshan
Database System Concepts - 6th Edition 1.30 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.31 ©Silberschatz, Korth and Sudarshan
History of Database Systems History (cont.)
■ 1950s and early 1960s: ■ 1980s:
● Data processing using magnetic tapes for storage ● Research relational prototypes evolve into commercial systems
4 Tapes provided only sequential access SQL becomes industrial standard
4
● Parallel and distributed database systems
● Punched cards for input
● Object-oriented database systems
■ Late 1960s and 1970s:
■ 1990s:
● Hard disks allowed direct access to data
● Large decision support and data-mining applications
● Network and hierarchical data models in widespread use
● Large multi-terabyte data warehouses
● Ted Codd defines the relational data model
● Emergence of Web commerce
4 Would win the ACM Turing Award for this work ■ Early 2000s:
4 IBM Research begins System R prototype ● XML and XQuery standards
4 UC Berkeley begins Ingres prototype ● Automated database administration
● High-performance (for the era) transaction processing ■ Later 2000s:
● Giant data storage systems
4 Google BigTable, Yahoo PNuts, Amazon, ..
Database System Concepts - 6th Edition 1.32 ©Silberschatz, Korth and Sudarshan Database System Concepts - 6th Edition 1.33 ©Silberschatz, Korth and Sudarshan
End of Chapter 1
Database System Concepts - 6th Edition 1.34 ©Silberschatz, Korth and Sudarshan