Overview of Databases and Transaction Processing Chapter 1.

Slides:



Advertisements
Similar presentations
1 Senn, Information Technology, 3 rd Edition © 2004 Pearson Prentice Hall James A. Senns Information Technology, 3 rd Edition Chapter 7 Enterprise Databases.
Advertisements

Chapter 1 Overview of Databases and Transaction Processing.
Database Management3-1 L3 Database Management Santa R. Susarapu Ph.D. Student Virginia Commonwealth University.
ICS (072)Database Systems: A Review1 Database Systems: A Review Dr. Muhammad Shafique.
Chapter 3 Database Management
Database Management: Getting Data Together Chapter 14.
Transaction Processing IS698 Min Song. 2 What is a Transaction?  When an event in the real world changes the state of the enterprise, a transaction is.
Organizing Data & Information
©Silberschatz, Korth and Sudarshan1.1Database System Concepts Chapter 1: Introduction Purpose of Database Systems View of Data Data Models Data Definition.
Introduction to Databases Transparencies
ICS (072)Database Systems Background Review 1 Database Systems Background Review Dr. Muhammad Shafique.
The Architecture of Transaction Processing Systems
Databases and Database Management System. 2 Goals comprehensive introduction to –the design of databases –database transaction processing –the use of.
Database – Part 2 Dr. V.T. Raja Oregon State University.
BUSINESS DRIVEN TECHNOLOGY
1 Recap Database: –collection of data central to some enterprise that is managed by a Database Management System –reflection of the current state of the.
Chapter 1 An Overview of Database Management. 1-2 Topics in this Chapter What is a Database System? What is a Database? Why Database? Data Independence.
Databases and Database Management System. 2 Goals comprehensive introduction to –the design of databases –database transaction processing –the use of.
1 Introduction Introduction to database systems Database Management Systems (DBMS) Type of Databases Database Design Database Design Considerations.
Database Fundamentals Introduction
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 1.
Dr. Kalpakis CMSC 461, Database Management Systems Introduction.
Chapter 1 Introduction to Databases
Chapter 1: The Database Environment
Lecture 1 DBMS & More Atif Farid Mohammad Adjunct Professor UNCC
Chapter 1 Overview of Databases and Transaction Processing.
Database Management Managerial Overview. Managing Data Resources Data are a vital organizational resource that need to be managed like other important.
E-Data Jill Dyché Turning Data into Information with Data Warehousing.
Copyright © 2007 Ramez Elmasri and Shamkant B. Navathe Slide 1- 1 Chapter 1 - Introduction: Databases and Database Users - Outline Types of Databases and.
IT – DBMS Concepts Relational Database Theory.
Managing Data Resources
Discovering Computers Fundamentals, 2012 Edition Your Interactive Guide to the Digital World.
Copyright © 2003 by Prentice Hall Computers: Tools for an Information Age Chapter 13 Database Management Systems: Getting Data Together.
Objectives Overview Define the term, database, and explain how a database interacts with data and information Define the term, data integrity, and describe.
The McGraw-Hill Companies, Inc Information Technology & Management Thompson Cats-Baril Chapter 3 Content Management.
Chapter 1 Introduction to Databases Pearson Education ©
Introduction: Databases and Database Users
1Mr.Mohammed Abu Roqyah. Introduction and Conceptual Modeling 2Mr.Mohammed Abu Roqyah.
1 Adapted from Pearson Prentice Hall Adapted form James A. Senn’s Information Technology, 3 rd Edition Chapter 7 Enterprise Databases and Data Warehouses.
Chapter 1 Databases & Database Users. Slide 1-2 Acknowledge The main reference of this presentation is the textbook and PPT from : Elmasri & Navathe,
Chapter 1 : Introduction §Purpose of Database Systems §View of Data §Data Models §Data Definition Language §Data Manipulation Language §Transaction Management.
Data warehousing and online analytical processing- Ref Chap 4) By Asst Prof. Muhammad Amir Alam.
Database A database is a collection of data organized to meet users’ needs. In this section: Database Structure Database Tools Industrial Databases Concepts.
©Silberschatz, Korth and Sudarshan1.1Database System Concepts Chapter 1: Introduction Purpose of Database Systems View of Data Data Models Data Definition.
Storing Organizational Information - Databases
Database Design and Management CPTG /23/2015Chapter 12 of 38 Functions of a Database Store data Store data School: student records, class schedules,
Chapter(1) Introduction and conceptual modeling. Basic definitions Data : know facts that can be recorded and have an implicit. Database: a collection.
Database Management System (DBMS) an Introduction DeSiaMore 1.
Lecture # 3 & 4 Chapter # 2 Database System Concepts and Architecture Muhammad Emran Database Systems 1.
5 - 1 Copyright © 2006, The McGraw-Hill Companies, Inc. All rights reserved.
Copyright © 2011 Pearson Education, Inc. Publishing as Pearson Addison-Wesley Chapter 1 Databases and Database Users.
Data resource management
Database Environment Chapter 2. Data Independence Sometimes the way data are physically organized depends on the requirements of the application. Result:
CIS/SUSL1 Fundamentals of DBMS S.V. Priyan Head/Department of Computing & Information Systems.
Chapter 1 Overview of Databases and Transactions.
© 2003 Prentice Hall, Inc.3-1 Chapter 3 Database Management Information Systems Today Leonard Jessup and Joseph Valacich.
Lecture On Introduction (DBMS) By- Jesmin Akhter Assistant Professor, IIT, Jahangirnagar University.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 1 Database Systems.
Database System Concepts Introduction Purpose of Database Systems View of Data Data Models Data Definition Language Data Manipulation Language Transaction.
Postgraduate Module Enterprise Database Systems Technological Educational Institution of Larisa in collaboration with Staffordshire University Larisa
1 Lecture1 Introduction to Databases Systems Database 1.
Chapter 1 Overview of Databases and Transaction Processing.
Chapter 1 Databases and Database Users. Overview Traditional database applications Store textual or numeric information Multimedia databases Store images,
James A. Senn’s Information Technology, 3rd Edition
Data warehouse.
Overview of Databases and Transaction Processing
Chapter 3 Database Management
Enabling the Organization – Decision Making
Terms: Data: Database: Database Management System: INTRODUCTION
Data Warehouse and OLAP Technology
Presentation transcript:

Overview of Databases and Transaction Processing Chapter 1

2 What is a Database? Collection of data central to some enterprise Essential to operation of enterprise –Contains the only record of enterprise activity An asset in its own right –Historical data can guide enterprise strategy –Of interest to other enterprises State of database mirrors state of enterprise –Database is persistent

3 What is a Database Management System? A Database Management System (DBMS) is a program that manages a database: –Supports a high-level access language (e.g. SQL). –Application describes database accesses using that language. –DBMS interprets statements of language to perform requested database access.

4 What is a Transaction? When an event in the real world changes the state of the enterprise, a transaction is executed to cause the corresponding change in the database state –With an on-line database, the event causes the transaction to be executed in real time A transaction is an application program with special properties - discussed later - to guarantee it maintains database correctness

5 What is a Transaction Processing System? Transaction execution is controlled by a TP monitor –Creates the abstraction of a transaction, analogous to the way an operating system creates the abstraction of a process –TP monitor and DBMS together guarantee the special properties of transactions A Transaction Processing System consists of TP monitor, databases, and transactions

6 Transaction Processing System TP Monitor DBMS database transactions DBMS database

7 Systems: Then and Now Relational model using SQL - high-level view of data –Older systems presented low-level view Might contain multimedia data –Older systems restricted to alphanumeric data On-line: database accessed at time of event –Older systems were off-line, batch

8 Systems: Then and Now (con’t) Concurrent - multiple transactions execute simultaneously –Older systems processed transactions sequentially Distributed computation - different parts of the application execute on different computers –Older systems were centralized

9 Systems: Then and Now (con’t) Distributed data - different parts of the data are stored in different databases on different computers –Older systems were centralized Heterogeneous - involves HW and SW modules from different manufacturers –Older systems were homogeneous Accessed by everyone (e.g., e-commerce) –Older systems restricted to trained personnel

10 System Requirements High Availability: on-line => must be operational while enterprise is functioning High Reliability: correctly tracks state, does not lose data, controlled concurrency High Throughput: many users => many transactions/sec Low Response Time: on-line => users are waiting

11 System Requirements (con’t) Long Lifetime: complex systems are not easily replaced –Must be designed so they can be easily extended as the needs of the enterprise change Security: sensitive information must be carefully protected since system is accessible to many users –Authentication, authorization, encryption

12 Roles in Design, Implementation, and Maintenance of a TPS System Analyst - specifies system using input from customer; provides complete description of functionality from customer’s and user’s point of view Database Designer - specifies structure of data that will be stored in database Application Programmer - implements application programs (transactions) that access data and support enterprise rules

13 Roles in Design, Implementation and Maintenance of a TPS (con’t) Database Administrator - maintains database once system is operational: space allocation, performance optimization, database security System Administrator - maintains transaction processing system: monitors interconnection of HW and SW modules, deals with failures and congestion

14 OLTP vs. OLAP On-line Transaction Processing (OLTP) –Day-to-day handling of transactions that result from enterprise operation –Maintains correspondence between database state and enterprise state On-line Analytic Processing (OLAP) –Analysis of information in a database for the purpose of making management decisions

15 OLAP Analyzes historical data (terabytes) using complex queries Due to volume of data and complexity of queries, OLAP often uses a data warehouse Data Warehouse - (offline) repository of historical data generated from OLTP or other sources Data Mining - use of warehouse data to discover relationships that might influence enterprise strategy

16 Examples - Supermarket OLTP –Event is 3 cans of soup and 1 box of crackers bought; update database to reflect that event OLAP –Last winter in all stores in northeast, how many customers bought soup and crackers together? Data Mining –Are there any interesting combinations of foods that customers frequently bought together?