Chapter 9: The Client/Server Database Environment

Slides:



Advertisements
Similar presentations
The Client/Server Database Environment
Advertisements

ICS 434 Advanced Database Systems
Chapter 9: The Client/Server Database Environment
Database Architectures and the Web
Chapter 13 (Web): Distributed Databases
Technical Architectures
BICS546 Client/Server Database Application Development.
Overview Explain three application components: presentation, processing, and storage Distinguish between file server, database server, 3-tier, and n-tier.
1 Database Architectures Modified from …..Modern Database Management Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.
12 Chapter 12 Client/Server Systems Database Systems: Design, Implementation, and Management, Fifth Edition, Rob and Coronel.
Chapter 9: The Client/Server Database Environment
1 © Prentice Hall, 2002 The Client/Server Database Environment.
© 2001 by Prentice Hall8-1 Local Area Networks, 3rd Edition David A. Stamper Part 3: Software Chapter 8 Client/Server Architecture.
©Ian Sommerville 2004Software Engineering, 7th edition. Chapter 12 Slide 1 Distributed Systems Design 1.
Lecture The Client/Server Database Environment
Client/Server Database Environment CISB344 Database 2  At the end of this chapter, you should be able to: › Define client/server systems, file server,
Client/Server Computing. Information processing is distributed among several workstations and servers on a network, with each function being assigned.
The Client/Server Database Environment
Chapter 9: The Client/Server Database Environment
Chapter 3 Database Architectures and the Web Pearson Education © 2009.
Database System Concepts and Architecture Lecture # 3 22 June 2012 National University of Computer and Emerging Sciences.
Beyond DHTML So far we have seen and used: CGI programs (using Perl ) and SSI on server side Java Script, VB Script, CSS and DOM on client side. For some.
Lecture On Database Analysis and Design By- Jesmin Akhter Lecturer, IIT, Jahangirnagar University.
©Ian Sommerville 2006Software Engineering, 8th edition. Chapter 12 Slide 1 Distributed Systems Architectures.
Enterprise Systems MIS 181.9: Service Oriented Architecture 2 nd Semester,
1 © Prentice Hall, 2002 Chapter 8: The Client/Server Database Environment Modern Database Management 6 th Edition Jeffrey A. Hoffer, Mary B. Prescott,
MBA 664 Database Management Systems Dave Salisbury ( )
Database Architectures and the Web Session 5
Lecture On Database Analysis and Design By- Jesmin Akhter Lecturer, IIT, Jahangirnagar University.
Lecture On Database Analysis and Design By- Jesmin Akhter Lecturer, IIT, Jahangirnagar University.
9/5/2012ISC329 Isabelle Bichindaritz1 Web Database Environment.
© 2005 by Prentice Hall 1 Chapter 9: The Client/Server Database Environment Modern Database Management 7 th Edition Jeffrey A. Hoffer, Mary B. Prescott,
Relational Algebra & Client-Server Systems, CS263 Lectures 11 and 12.
The Client/Server Database Environment Ployphan Sornsuwit KPRU Ref.
Personal Computer - Stand- Alone Database  Database (or files) reside on a PC - on the hard disk.  Applications run on the same PC and directly access.
Database Architectures Database System Architectures Considerations – Data storage: Where do the data and DBMS reside? – Processing: Where.
1 1.Client/Server Anatomy 2.Client/Server Technologies 3.Client/Server System Standards Understanding Client/Server.
Chapter 9  Definition of terms  List advantages of client/server architecture  Explain three application components:
TM 8-1 Copyright © 1999 Addison Wesley Longman, Inc. Client/Server and Middleware.
CSC 480 Software Engineering Lecture 17 Nov 4, 2002.
Database application development 1. Chapter 8 © 2013 Pearson Education, Inc. Publishing as Prentice Hall OBJECTIVES  Define terms  Explain three components.
E-commerce Architecture Ayşe Başar Bener. Client Server Architecture E-commerce is based on client/ server architecture –Client processes requesting service.
© 2009 Pearson Education, Inc. Publishing as Prentice Hall 1 Lecture 9: The Client/Server Database Environment Modern Database Management 9 th Edition.
Distributed Systems Architectures Chapter 12. Objectives  To explain the advantages and disadvantages of different distributed systems architectures.
The Client/Server Database Environment Mata Kuliah: Interoperabilitas.
Distributed Systems Architectures. Topics covered l Client-server architectures l Distributed object architectures l Inter-organisational computing.
Business System Development
Table General Guidelines for Better System Performance
Database Architectures and the Web
Chapter 2 Database System Concepts and Architecture
The Client/Server Database Environment
Introduction to Visual Basic 2008 Programming
The Client/Server Database Environment
The Client/Server Database Environment
CSC 480 Software Engineering
Chapter 9: The Client/Server Database Environment
Database Architectures and the Web
#01 Client/Server Computing
Chapter 16 Designing Distributed and Internet Systems
Ch > 28.4.
MANAGING DATA RESOURCES
Lecture 1: Multi-tier Architecture Overview
Chapter 1: The Database Environment
Table General Guidelines for Better System Performance
Distributed DBMS Architecture
Chapter 17: Client/Server Computing
Introduction of Week 11 Return assignment 9-1 Collect assignment 10-1
Database Processing: David M. Kroenke’s Chapter Twelve: Part One
#01 Client/Server Computing
Presentation transcript:

Chapter 9: The Client/Server Database Environment Modern Database Management 6th Edition Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden © Prentice Hall, 2002

Client/Server Systems Networked computing model Processes distributed between clients and servers Client – Workstation (usually a PC) that requests and uses a service Server – Computer (PC/mini/mainframe) that provides a service For DBMS, server is a database server © Prentice Hall, 2002

Application Logic in C/S Systems Presentation Logic Input – keyboard/mouse Output – monitor/printer Processing Logic I/O processing Business rules Data management Storage Logic Data storage/retrieval GUI Interface Procedures, functions, programs DBMS activities © Prentice Hall, 2002

Client/Server Architectures File Server Architecture Database Server Architecture Three-tier Architecture Client does extensive processing Client does little processing © Prentice Hall, 2002

File Server Architecture All processing is done at the PC that requested the data Entire files are transferred from the server to the client for processing. Problems: Huge amount of data transfer on the network Each client must contain full DBMS Heavy resource demand on clients Client DBMSs must recognize shared locks, integrity checks, etc. FAT CLIENT © Prentice Hall, 2002

Figure 9-2 – File Server Architecture FAT CLIENT © Prentice Hall, 2002

Database Server Architectures 2-tiered approach Client is responsible for I/O processing logic Some business rules logic Server performs all data storage and access processing  DBMS is only on server Advantages Clients do not have to be as powerful Greatly reduces data traffic on the network Improved data integrity since it is all processed centrally Stored procedures  some business rules done on server © Prentice Hall, 2002

Advantages of Stored Procedures Compiled SQL statements Reduced network traffic Improved security Improved data integrity Thinner clients © Prentice Hall, 2002

Figure 9-3 – Database server architecture Thinner clients DBMS only on server © Prentice Hall, 2002

Three-Tier Architectures Three layers: Client Application server Database server GUI interface (I/O processing) Browser Business rules Web Server Data storage DBMS Thin Client PC just for user interface and a little application processing. Limited or no data storage (sometimes no hard drive) © Prentice Hall, 2002

Figure 9-4 -- Three-tier architecture Thinnest clients Business rules on separate server DBMS only on DB server © Prentice Hall, 2002

Advantages of Three-Tier Architectures Scalability Technological flexibility Long-term cost reduction Better match of systems to business needs Improved customer service Competitive advantage Reduced risk © Prentice Hall, 2002

Challenges of Three-tier Architectures High short-term costs Tools and training Experience Incompatible standards Lack of compatible end-user tools © Prentice Hall, 2002

Application Partitioning Placing portions of the application code in different locations (client vs. server) AFTER it is written Advantages Improve performance Improve interoperability Balanced workloads © Prentice Hall, 2002

Processing Logic Distributions 2-tier distributions Processing logic could be at client, server, or both Processing logic will be at application server or Web server n-tier distributions © Prentice Hall, 2002

Parallel Computer Architectures Tightly Coupled Symmetric Multiprocessing (SMP) Multiple CPUs Shared RAM Loosely Coupled Massively Parallel Processing (MPP) Each CPU has its own RAM space © Prentice Hall, 2002

Parallel Computer Architectures Figure 9-6 – Tightly-coupled – CPUs share common memory space Figure 9-7 – Loosely-coupled – CPUs each have their own memory space © Prentice Hall, 2002

Query Processing with Parallel Processors Figure 9-5(a) – Parallel transactions Figure 9-5(b) – Parallel query © Prentice Hall, 2002

Middleware Software which allows an application to interoperate with other software No need for programmer/user to understand internal processing Accomplished via Application Program Interface (API) The “glue” that holds client/server applications together © Prentice Hall, 2002

Types of Middleware RPC – Remote Procedure Calls (RPC) client makes calls to procedures running on remote computers synchronous and asynchronous Message-Oriented Middleware (MOM) asynchronous calls between the client via message queues Publish/Subscribe push technology  server sends information to client when available Object Request Broker (ORB) Object-oriented management of communications between clients and servers SQL-oriented Data Access Middleware between applications and database servers © Prentice Hall, 2002

Database Middleware ODBC – Open Database Connectivity OLE-DB Most DB vendors support this OLE-DB Microsoft enhancement of ODBC JDBC – Java Database Connectivity Special Java classes that allow Java applications/applets to connect to databases © Prentice Hall, 2002

Client/Server Security Network environment  complex security issues Security levels: System-level password security for allowing access to the system Database-level password security for determining access privileges to tables; read/update/insert/delete privileges Secure client/server communication via encryption © Prentice Hall, 2002

Query-by-Example (QBE) Direct-manipulation database language Graphical approach Available in MS Access MS Access translates QBE to SQL and vice versa Useful for end-user database programming Good for ad hoc processing and prototyping © Prentice Hall, 2002

Figure 9-10: QBE view of a 2-table join query Figure 9-12: Equivalent query in SQL © Prentice Hall, 2002

Figure 9-9: Access usability hierarchy API to call functions in DLLs external to MS Access Visual Basic for Applications…language for customizing the application Stored modules of pre-existing VBA code Simple processes Foundation of MS Access © Prentice Hall, 2002

Using ODBC to Link External Databases Stored on a Database Server Open Database Connectivity (ODBC) API that provides a common language for application programs to access and process SQL databases independent of the particular RDBMS that is accessed Required parameters: ODBC driver Back-end server name Database name User id and password Additional information: Data source name (DSN) Windows client computer name Client application program’s executable name Java Database Connectivity (JDBC) is similar to ODBC – built specifically for Java applications © Prentice Hall, 2002

ODBC Architecture (Figure 9-18) Client does not need to know anything about the DBMS Application Program Interface (API) provides common interface to all DBMSs Each DBMS has its own ODBC-compliant driver © Prentice Hall, 2002

Visual Basic for Applications VBA is the programming language that accompanies Access 2000 VBA provides these features: Ability to perform complex functionality Error handling Faster execution than macros Easier maintenance OLE automation Programmatic control Ease of reading for programmers Event-driven – nonprocedural programming that detects events and generates appropriate responses © Prentice Hall, 2002