database systems centralized and client/server architecture and classification of dbms toqir ahmad...

20
Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad Rana Database Management Systems 1 Lecture 7

Upload: walter-hardy

Post on 22-Dec-2015

212 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

1

Database Systems

Centralized and Client/Server Architecture and Classification of DBMS

Toqir Ahmad RanaDatabase Management Systems

Lecture 7

Page 2: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

2

Today’s agenda

•Centralized and Client/Server Architecture for DBMS▫Basic client/server architecture▫Two –tier client/server architecture▫Three –tier client/server architecture

•Classification of DBMS

Toqir Ahmad Rana

Page 3: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

3

Centralized and Client-Server Architectures • Centralized DBMS: combines everything

into single system including- DBMS software, hardware, application programs and user interface processing software.

Toqir Ahmad Rana

Page 4: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

4

A physical centralized architecture.

Toqir Ahmad Rana

Page 5: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

5

Basic Client-Server Architectures• Specialized Servers with Specialized

functions• Clients• DBMS Server

Toqir Ahmad Rana

Page 6: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

6

Specialized Servers with Specialized functions: • File Servers• Printer Servers• Web Servers• E-mail Servers

Toqir Ahmad Rana

Page 7: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

7

Clients: • Provide appropriate interfaces and a

client-version of the system to access and utilize the server resources. • Clients maybe diskless machines or PCs

or Workstations with disks with only the client software installed.• Connected to the servers via some form of

a network. (LAN: local area network, wireless network, etc.)

Toqir Ahmad Rana

Page 8: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

8

Logical two-tier client/server architecture

Toqir Ahmad Rana

Page 9: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

9

DBMS Server

• Provides database query and transaction services to the clients• Sometimes called query and transaction

servers

Toqir Ahmad Rana

Page 10: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

10

Physical two-tier client-server architecture.

Toqir Ahmad Rana

Page 11: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

11

Two Tier Client-Server Architecture• User Interface Programs and

Application Programs run on the client side• Interface called ODBC (Open Database

Connectivity ) provides an Application program interface (API) allow client side programs to call the DBMS. Most DBMS vendors provide ODBC drivers.

Toqir Ahmad Rana

Page 12: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

12

Two Tier Client-Server Architecture• A client program may connect to several

DBMSs.• Other variations of clients are possible:

e.g., in some DBMSs, more functionality is transferred to clients including data dictionary functions, optimization and recovery across multiple servers, etc. In such situations the server may be called the Data Server.

Toqir Ahmad Rana

Page 13: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

13

Three Tier Client-Server Architecture• Common for Web applications• Intermediate Layer called Application

Server or Web Server: • stores the web connectivity software and the rules

and business logic (constraints) part of the application used to access the right amount of data from the database server

• acts like a conduit for sending partially processed data between the database server and the client.

• Additional Features- Security: • encrypt the data at the server before transmission• decrypt data at the client

Toqir Ahmad Rana

Page 14: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

14

Logical three-tier client/server architecture.

Toqir Ahmad Rana

Page 15: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

15

Classification of DBMSs

•Several criteria are normally used to classify DBMSs.▫Data model▫Number of users▫Number of sites▫Cost▫Types of access path

Toqir Ahmad Rana

Page 16: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

16

Data Model• Relational model represents a database as a

collection of tables, where each table can be stored as a separate file.

• Object model defines a database in terms of objects, their properties, and their operations.

• Relational DBMSs have been extending their models to incorporate object database concepts and other capabilities; Object-relational model

• Hierarchical model represents data as record types• and also represents a limited type of l:N relationship,

called a set type.• Network model represents data as hierarchical tree

structures.

Toqir Ahmad Rana

Page 17: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

17

The schema of Figure 2.1 in network model notation

Toqir Ahmad Rana

Page 18: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

18

Number of users

•Single-user systems support only one user at a time and are mostly used with personal computers.

•Multiuser systems, which include the majority of DBMSs, support multiple users concurrently.

Toqir Ahmad Rana

Page 19: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

19

Number of sites

•A DBMS is centralized if the data is stored at a single computer site.

•A distributed DBMS (DDBMS) can have the actual database and DBMS software distributed over many sites, connected by a computer network.▫Homogeneous▫Heterogeneous ▫Federated or Multidatabase Systems

Toqir Ahmad Rana

Page 20: Database Systems Centralized and Client/Server Architecture and Classification of DBMS Toqir Ahmad RanaDatabase Management Systems 1 Lecture 7

Database Management Systems

20

Types of the access path

•One well-known family of DBMSs is based on inverted file structures. Finally, a DBMS can be general purpose or special purpose.

•Online transaction processing (OLTP) systems,

Toqir Ahmad Rana