Overview Explain three application components: presentation, processing, and storage Distinguish between file server, database server, 3-tier, and n-tier.

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 3 Database Architectures and the Web Pearson Education © 2009.
Technical Architectures
Chapter 17: Client/Server Computing Business Data Communications, 4e.
Database Application Application logic: presentation (input /output)
BICS546 Client/Server Database Application Development.
1 Database Architectures Modified from …..Modern Database Management Jeffrey A. Hoffer, Mary B. Prescott, Fred R. McFadden.
12 Chapter 12 Client/Server Systems Hachim Haddouti.
McGraw-Hill/Irwin Copyright © 2007 by The McGraw-Hill Companies, Inc. All rights reserved. Chapter 17 Client-Server Processing, Parallel Database Processing,
Chapter 9: The Client/Server Database Environment
Client/Server Architecture
1 © Prentice Hall, 2002 The Client/Server Database Environment.
Lecture The Client/Server Database Environment
Chapter 8: database application development
Client/Server Database Environment CISB344 Database 2  At the end of this chapter, you should be able to: › Define client/server systems, file server,
The Client/Server Database Environment
Chapter 9: The Client/Server Database Environment
Web Application Architecture: multi-tier (2-tier, 3-tier) & mvc
Chapter 2 Database System Concepts and Architecture
Chapter 3 Database Architectures and the Web Pearson Education © 2009.
1 Web Database Processing. Web Database Applications Static Report Publishing a report is prepared from a database application and exported to HTML DB.
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.
How to Configure Informix Connect and ODBC James Edmiston Informix DBA Consultant/Quest Information Systems, Inc. Informix User Forum 2005 Moving Forward.
Lecture On Database Analysis and Design By- Jesmin Akhter Lecturer, IIT, Jahangirnagar University.
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
Information Systems Chapter 5 Building the database Part 1. Unsing Access.
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.
CSC271 Database Systems Lecture # 4.
9/5/2012ISC329 Isabelle Bichindaritz1 Web Database Environment.
Fundamentals of Database Chapter 7 Database Technologies.
M1G Introduction to Database Development 6. Building Applications.
© 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.
Csi315csi315 Client/Server Models. Client/Server Environment LAN or WAN Server Data Berson, Fig 1.4, p.8 clients network.
© 2011 Pearson Education, Inc. Publishing as Prentice Hall 1 Chapter 8: Database Application Development Modern Database Management 10 th Edition Jeffrey.
The Client/Server Database Environment Ployphan Sornsuwit KPRU Ref.
Mainframe (Host) - Communications - User Interface - Business Logic - DBMS - Operating System - Storage (DB Files) Terminal (Display/Keyboard) Terminal.
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 17: Client/Server Computing Business Data Communications, 4e.
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.
Chapter 1 Database Access from Client Applications.
Database application development 1. Chapter 8 © 2013 Pearson Education, Inc. Publishing as Prentice Hall OBJECTIVES  Define terms  Explain three components.
1 LM 6 Database Applications Dr. Lei Li. Learning Objectives Explain three components of a client-server system Describe differences between a 2-tiered.
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.
The Client/Server Database Environment Mata Kuliah: Interoperabilitas.
Business System Development
Chapter 9: The Client/Server Database Environment
Chapter 2 Database System Concepts and Architecture
The Client/Server Database Environment
The Client/Server Database Environment
The Client/Server Database Environment
Chapter 9: The Client/Server Database Environment
Database Architectures and the Web
#01 Client/Server Computing
Lecture 1: Multi-tier Architecture Overview
Introduction of Week 11 Return assignment 9-1 Collect assignment 10-1
#01 Client/Server Computing
Presentation transcript:

IS 4420 Database Fundamentals Chapter 9: The Client/Server Database Environment Leon Chen

Overview Explain three application components: presentation, processing, and storage Distinguish between file server, database server, 3-tier, and n-tier approaches Middleware and ODBC Microsoft Access Query-by-example (QBE) VBA

Client / Server Architecture

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

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

Client/Server Architectures Client does extensive processing Client does little processing File Server Architecture Database Server Architecture Three-tier Architecture

File Server Architecture FAT CLIENT

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

Two-tier database server architecture Thinner clients DBMS only on server Two-tier database server architecture

Two-Tier Database Server Architectures 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 of Two-Tier Approach 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

Advantages of Stored Procedures Compiled SQL statements Reduced network traffic Improved security Improved data integrity Thinner clients

Three-tier Architecture Thinnest clients Business rules on application server DBMS only on Database server

Three-Tier Architectures GUI interface (I/O processing) Browser Client Application server Web Server Business rules Database 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)

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

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

Application Partitioning Placing portions of the application code in different locations (client vs. server) Advantages Improved performance Improved interoperability Balanced workloads

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

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)

Types of Middleware 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

Database Middleware ODBC – Open Database Connectivity OLE-DB Most DB vendors support this OLE-DB OLE –Object Linking and Embedding Microsoft enhancement of ODBC JDBC – Java Database Connectivity Special Java classes that allow Java applications/applets to connect to databases

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, uut built specifically for Java applications

ODBC Architecture Oracle9i Oracle ODBC driver Microsoft Access

Client with Microsoft Access ODBC Unix server with Oracle9i

Microsoft Access Introduction – Excerpted from Wikipedia Microsoft Access is a relational database management system from Microsoft, packaged with Microsoft Office Professional which combines the relational Microsoft Jet Database Engine with a graphical user interface. It can use data stored in Access/Jet, SQL Server, Oracle, or any ODBC-compliant data container. Some professional application developers use Access for rapid application development (RAD), especially for the creation of prototypes and standalone applications Skilled software developers and data architects use it to develop powerful, complex applications. Relatively unskilled programmers and non-programmer "power users" can use it to build simple applications without having to deal with features they don't understand.

Microsoft Access Introduction – Excerpted from Wikipedia (cont.) Access does not scale well if data access is via a network, so applications that are used by more than a handful of people tend to rely on a Client-Server based solution such as Oracle, DB2, Microsoft SQL Server, PostgreSQL, MySQL, or MaxDB. However, an Access "front end" (the forms, reports, queries and VB code) can be used against a host of database backends, including Access itself, SQL Server, Oracle, and any other ODBC-compliant product.

Microsoft Access usability hierarchy

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

QBE view of a multiple-table join query

View SQL Code of QBE

Visual Basic for Applications VBA is the programming language that accompanies Access VBA provides these features (that Access Macro might not have): 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