+ All Categories
Home > Documents > Chapter 2 Database System Concepts and Architecture

Chapter 2 Database System Concepts and Architecture

Date post: 05-Jan-2016
Category:
Upload: pakuna
View: 54 times
Download: 2 times
Share this document with a friend
Description:
Chapter 2 Database System Concepts and Architecture. Dr. Bernard Chen Ph.D. University of Central Arkansas. Outline. Data Models, Schemas, and Instances Three-Schema Architecture Database language and Interfaces Centralized and client/server architecture. Categories of data models. - PowerPoint PPT Presentation
Popular Tags:
29
Chapter 2 Database System Concepts and Architecture Dr. Bernard Chen Ph.D. University of Central Arkansas
Transcript
Page 1: Chapter 2  Database System Concepts and Architecture

Chapter 2 Database System Concepts

and Architecture

Dr. Bernard Chen Ph.D.University of Central Arkansas

Page 2: Chapter 2  Database System Concepts and Architecture

Outline

Data Models, Schemas, and Instances

Three-Schema Architecture Database language and Interfaces Centralized and client/server

architecture

Page 3: Chapter 2  Database System Concepts and Architecture

Categories of data models One fundamental characteristic of the database

approach is that it provides some level of data abstraction

High-level or Conceptual data models:Provide concept that are close to the way many users

perceive data

Low-level or Physical data model:Provide concepts that describe the details of how data is

stored in the computer

Page 4: Chapter 2  Database System Concepts and Architecture

Conceptual data models It uses concepts such as entities, attributes

and relationships.

Entity represents a real-world object or concept, such as employee or project

Attribute represents some property of interest that further describes an entity, such as employee’s name or salary

Relation represents an association among two or more entitles

Page 5: Chapter 2  Database System Concepts and Architecture

Example of a Relation

Page 6: Chapter 2  Database System Concepts and Architecture

Schemas and Database State In any data model, it is important to

distinguish between the description of the data and database itself

The description of the database is called the database schema

A displayed Schema is called a schema diagram

Page 7: Chapter 2  Database System Concepts and Architecture

Database V.S. File In the database approach, a single repository

of data is maintained that is defined once then accessed by various users

The major differences between DB and File are:

1. Self-describing of a DB2. Insulation between programs and data3. Support of multiple views of the data4. Sharing of data and multiuser transaction

processing

Page 8: Chapter 2  Database System Concepts and Architecture

University Database

Page 9: Chapter 2  Database System Concepts and Architecture

Example of a Database Schema (incomplete)

Page 10: Chapter 2  Database System Concepts and Architecture

Example of a Database Schema

Page 11: Chapter 2  Database System Concepts and Architecture

Schemas and Database State The data in the database at a particular moment in time

is called a database state The distinction between database schema and database

state is very important When we define a new database, we specify its

database schema only to the DBMS

At this point, the corresponding database state is the empty state with no data

We get the initial state of the database when the database is first loaded

From then on, every time an update operation is applied to the database, we get another database state

Page 12: Chapter 2  Database System Concepts and Architecture

Schemas and Database State Valid State: a state that satisfies the

structure and constrains specified in the schema.

The database schema changes very infrequently.

The database state changes every time the database is updated

Schema is also called intension. State is also called extension.

Page 13: Chapter 2  Database System Concepts and Architecture

Outline

Data Models, Schemas, and Instances

Three-Schema Architecture Database language and Interfaces Centralized and client/server

architecture

Page 14: Chapter 2  Database System Concepts and Architecture

Three-Schema Architecture Three of four important characteristics

of the database approach, listed in Ch.1 are:

1. Self-describing of a DB (Schema)2. Insulation between programs and data3. Support of multiple views of the data

Three-Schema Architecture : it was proposed to help achieve and visualize these characteristics

Page 15: Chapter 2  Database System Concepts and Architecture

Three-Schema Architecture Defines DBMS schemas at three levels:

Internal schema at the internal level to describe physical storage structures and access paths (e.g indexes).

Conceptual schema at the conceptual level to describe the structure and constraints for the whole database for a community of users.

External schemas at the external level to describe the various user views.

Page 16: Chapter 2  Database System Concepts and Architecture

The three-schema architecture

Page 17: Chapter 2  Database System Concepts and Architecture

Outline

Data Models, Schemas, and Instances

Three-Schema Architecture Database language and Interfaces Centralized and client/server

architecture

Page 18: Chapter 2  Database System Concepts and Architecture

DBMS Languages The first step to create a database through

DBMS is to specify conceptual and internal schemas for the database

Data Definition Language (DDL): is used by database designers to define schemas

Data Manipulation Language (DML) View Definition Language (VDL): is to specify

user views

In current DBMS, the preceding types of languages are usually not considered distinct languages

Page 19: Chapter 2  Database System Concepts and Architecture

DBMS Component Modules A DBMS is a complex software system

The figure showed in next slide is divide into two halves.

The top half refers to the various users of the database system

The lower half shows the internals of the DBMS responsible for storage of data and processing of transactions

Page 20: Chapter 2  Database System Concepts and Architecture

Typical DBMS Component Modules

Page 21: Chapter 2  Database System Concepts and Architecture

Outline

Data Models, Schemas, and Instances

Three-Schema Architecture Database language and Interfaces Centralized and client/server

architecture

Page 22: Chapter 2  Database System Concepts and Architecture

Centralized DBMS Architecture

A centralized DBMS in which all the DBMS functionality, application program execution, and user interface processing were carried out on a single machine

Page 23: Chapter 2  Database System Concepts and Architecture

A Physical Centralized Architecture

Page 24: Chapter 2  Database System Concepts and Architecture

Basic Client/Server Architectures The client/server architecture was

developed to deal with computer environment in which a large number of PCs, workstation, file server…

A client in this framework is typically a user machine that provides user interface capabilities and local processing

A server is a system containing both hardware and software that can provide services to the client machines.

Page 25: Chapter 2  Database System Concepts and Architecture

Logical two-tier client server architecture

Page 26: Chapter 2  Database System Concepts and Architecture

Two-tier Architecture This is called two-tire

architectures because the software components are distributed over two systems: client and server

The emergence of the Web changed the roles of client and server, leading to the three-tier architecture

Page 27: Chapter 2  Database System Concepts and Architecture

Three-tier architecture The intermediate layer or middle layer

is sometimes called the application server or Web server

Three-tier Architecture Can Enhance Security:

1. Database server only accessible via middle tier2. Clients cannot directly access database server

Page 28: Chapter 2  Database System Concepts and Architecture

Three-tier client-server architecture

Page 29: Chapter 2  Database System Concepts and Architecture

Three-tier architecture

The presentation layer displays information to the user

The business logic layer handles intermediate rules and constrains before data is passed up to the user or down to the DBMS

If the bottom layer is split into two layers (a web server and a database server), then it is a 4-tire architecture (possible to the n-tier)


Recommended