Database Management System (DBMS)

Slides:



Advertisements
Similar presentations
Introduction to Databases
Advertisements

Database Systems Chapter 1
File Systems and Databases
Chapter 1 Database Systems
David M. Kroenke and David J. Auer Database Processing—12 th Edition Fundamentals, Design, and Implementation Chapter One: Introduction KROENKE AND AUER.
BTM 382 Database Management Chapter 1: Database systems
Database Systems.
 MODERN DATABASE MANAGEMENT SYSTEMS OVERVIEW BY ENGINEER BILAL AHMAD
CSC 351 FUNDAMENTALS OF DATABASE SYSTEMS
Database Systems: Design, Implementation, and Management Ninth Edition
Database Systems: Design, Implementation, and Management Ninth Edition
Chapter 1 Database Systems. Good decisions require good information derived from raw facts Data is managed most efficiently when stored in a database.
Chapter # 1 Database Systems BIS Database Systems
Database Systems: Design, Implementation, and Management Ninth Edition
About the Presentations The presentations cover the objectives found in the opening of each chapter. All chapter objectives are listed in the beginning.
Database Design - Lecture 1
DBS201: DBA/DBMS Lecture 13.
1 Introduction An organization's survival relies on decisions made by management An organization's survival relies on decisions made by management To make.
Functions of a Database Management System
AL-MAAREFA COLLEGE FOR SCIENCE AND TECHNOLOGY INFO 232: DATABASE SYSTEMS CHAPTER 1 DATABASE SYSTEMS (Cont’d) Instructor Ms. Arwa Binsaleh.
David M. Kroenke’s Chapter One: Introduction Part Two Database Processing: Fundamentals, Design, and Implementation.
Chapter 1 In-lab Quiz Next week
Chapter 1 Database Systems
1 Chapter 1 Database Systems Database Systems: Design, Implementation, and Management, Fifth Edition, Rob and Coronel.
Chapter One (Database System) Objectives Introduction to Database Management Systems (DBMS) Data and Information History of DB Types of DB.
AL-MAAREFA COLLEGE FOR SCIENCE AND TECHNOLOGY INFO 232: DATABASE SYSTEMS CHAPTER 1 DATABASE SYSTEMS Instructor Ms. Arwa Binsaleh.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 1 Database Systems.
Database Systems. Role and Advantages of the DBMS Improved data sharing Improved data security Better data integration Minimized data inconsistency Improved.
Introduction to Databases Three File Processing Systems DAVID M. KROENKE’S DATABASE PROCESSING, 10th Edition © 2006 Pearson Prentice Hall 1-2.
© 2013 Cengage Learning. All Rights Reserved. This edition is intended for use outside of the U.S. only, with content that may be different from the U.S.
Database Systems Database Systems: Design, Implementation, and Management, Rob and Coronel.
Department of Mathematics Computer and Information Science1 CS 351: Database Management Christopher I. G. Lanclos Chapter 1.
© 2013 Cengage Learning. All Rights Reserved. This edition is intended for use outside of the U.S. only, with content that may be different from the U.S.
1 Chapter 1 Database Systems Database Systems: Design, Implementation, and Management, Fifth Edition, Rob and Coronel.
CSC 351 FUNDAMENTALS OF DATABASE SYSTEMS. LECTURE 1: INTRODUCTION TO DATABASES.
Database Principles: Fundamentals of Design, Implementation, and Management Ninth Edition Chapter 1 Database Systems Carlos Coronel, Steven Morris, and.
 IS A COLLECTION OF PROGRAMS THAT MANAGES THE DATABASES STRUCTURE AND CONTROL ACCESS TO THE DATA STORED IN THE DATABASE.
Database Systems: Design, Implementation, and Management Eighth Edition Chapter 1 Database Systems.
Learning Outcomes  Understand the basics and concepts of database systems.  Design, implement and evaluate a computer-based system, process, component,
Database Principles: Fundamentals of Design, Implementation, and Management Chapter 1 The Database Approach.
Introduction to Databases
CS311 Database Management system
Lecture 1 Introduction to Database
David M. Kroenke and David J
Fundamentals & Ethics of Information Systems IS 201
Database Systems: Design, Implementation, and Management Tenth Edition
Chapter 6 Database Design
Database Systems: Design, Implementation, and Management Ninth Edition
Database Processing: David M. Kroenke’s Chapter One: Introduction
Basic Concepts in Data Management
Chapter 1 Database Systems
Database Processing: David M. Kroenke’s Chapter One: Introduction
BTM 382 Database Management Chapter 1: Database systems
File Systems and Databases
Database Systems Chapter 1
Chapter 1: The Database Environment
Database Systems: Design, Implementation, and Management
Introduction to Databases
Chapter 1 Database Systems
Database Principles 2 nd Ed., Coronel, Morris, Rob & Crockett © 2013 Cengage Learning EMEA Database Principles: Fundamentals of Design, Implementations.
Database Systems Design, Implementation, and Management Coronel | Morris 11e ©2015 Cengage Learning. All Rights Reserved. May not be scanned, copied or.
Chapter 1 Database Systems
DCT 2033 DATABASE MANAGEMENT SYSTEM Chapter 1
Chapter 1 Database Systems
The Database Environment
Database Systems: Design, Implementation, and Management Tenth Edition
Instructor: SAMIA ARSHAD
Presentation transcript:

Database Management System (DBMS) Database Principles Constructed by Hanh Pham based on slides from: “Database Processing, Fundamentals, Design, and Implementation”, D. Kroenke, D. Auer, Prentice Hall “Database Principles: Fundamentals of Design, Implementation, and Management”, C. Coronel, S. Morris, P.Rob Database Management System (DBMS)

Outlines What are DBMS ? Roles & Advantages of DBMS Types of Databases DBMS products Database Environments DBMS Functions Managing DBMS Database Jobs

Database Management System (DBMS) Database: shared, integrated computer structure that stores a collection of: End-user data: raw facts of interest to end user Metadata: data about data Provides description of data characteristics and relationships in data Complements and expands value of data Database management system (DBMS): collection of programs Manages structure and controls access to data

The DBMS

Role and Advantages of the DBMS DBMS is the intermediary between the user and the database Database structure stored as file collection Can only access files through the DBMS DBMS enables data to be shared DBMS integrates many users’ views of the data

Role and Advantages of the DBMS Advantages of a DBMS: Improved data sharing Improved data security Better data integration Minimized data inconsistency Improved data access Improved decision making Increased end-user productivity

Types of Databases Databases can be classified according to: Number of users Database location(s) Expected type and extent of use Single-user database supports only one user at a time Desktop database: single-user; runs on PC Multiuser database supports multiple users at the same time Workgroup and enterprise databases

Types of Databases (cont’d.) Centralized database: data located at a single site Distributed database: data distributed across several different sites Operational database: supports a company’s day-to-day operations Transactional or production database Data warehouse: stores data used for tactical or strategic decisions

Types of Databases (cont'd.) Unstructured data exist in their original state Structured data result from formatting Structure applied based on type of processing to be performed Semistructured data have been processed to some extent Extensible Markup Language (XML) represents data elements in textual format XML database supports semistructured XML data

Outlines DBMS products Database Environments DBMS Functions Managing DBMS Database Jobs

Prominent DBMS Products Microsoft Access 2010 Microsoft SQL Server 2008 R2 Microsoft SQL Server 2008 R2 Express Oracle Corporation Oracle Database 11g MySQL 5.5 IBM DB2

DBMS Power vs. Ease of Use

Personal Database Systems: Microsoft Access

Microsoft Access Microsoft Access is a low-end product intended for individual users and small workgroups. Microsoft Access tries to hide much of the underlying database technology from the user. A good strategy for beginners, but not for database professionals. NOTE: Microsoft Access 2007 is discussed in detail in Appendix A.

What Is Microsoft Access? Microsoft Access is a DBMS plus an application generator: The DBMS creates, processes, and administers Microsoft Access databases. The application generator includes query, form, and report components. The Microsoft Access DBMS engine is called the Access Data Engine (ADE). Microsoft Access 2000 and later can be used as an application generator for the Microsoft SQL Server DBMS.

Enterprise-Class Database Systems

Outlines Database Environments DBMS Functions Managing DBMS Database Jobs

The Database System Environment Database system: defines and regulates the collection, storage, management, use of data Five major parts of a database system: Hardware Software People Procedures Data

The Database System Environment Hardware: all the system’s physical devices Software: three types of software required Operating system software DBMS software Application programs and utility software

The Database System Environment People: all users of the database system System and database administrators Database designers Systems analysts and programmers End users Procedures: instructions and rules that govern the design and use of the database system Data: the collection of facts stored in the database

The Database System Environment Database systems are created and managed at different levels of complexity Database solutions must be cost-effective as well as tactically and strategically effective Database technology already in use affects selection of a database system

DBMS Functions Most functions are transparent to end users Can only be achieved through the DBMS Data dictionary management DBMS stores definitions of data elements and relationships (metadata) in a data dictionary DBMS looks up required data component structures and relationships Changes automatically recorded in the dictionary DBMS provides data abstraction and removes structural and data dependency

DBMS Functions (cont'd.) Data storage management DBMS creates and manages complex structures required for data storage Also stores related data entry forms, screen definitions, report definitions, etc. Performance tuning: activities that make the database perform more efficiently DBMS stores the database in multiple physical data files

DBMS Functions (cont'd.) Data transformation and presentation DBMS transforms data entered to conform to required data structures DBMS transforms physically retrieved data to conform to user’s logical expectations Security management DBMS creates a security system that enforces user security and data privacy Security rules determine which users can access the database, which items can be accessed, etc.

DBMS Functions (cont'd.) Multi-user access control DBMS uses sophisticated algorithms to ensure concurrent access does not affect integrity Backup and recovery management DBMS provides backup and data recovery to ensure data safety and integrity Recovery management deals with recovery of database after a failure Critical to preserving database’s integrity

DBMS Functions (cont'd.) Data integrity management DBMS promotes and enforces integrity rules Minimizes redundancy Maximizes consistency Data relationships stored in data dictionary used to enforce data integrity Integrity is especially important in transaction-oriented database systems

DBMS Functions (cont'd.) Database access languages and application programming interfaces DBMS provides access through a query language Query language is a nonprocedural language Structured Query Language (SQL) is the de facto query language Standard supported by majority of DBMS vendors

DBMS Functions (cont'd.) Database communication interfaces Current DBMSs accept end-user requests via multiple different network environments Communications accomplished in several ways: End users generate answers to queries by filling in screen forms through Web browser DBMS automatically publishes predefined reports on a Web site DBMS connects to third-party systems to distribute information via e-mail

Outlines Managing DBMS Database Jobs

Managing the Database System Database system provides a framework in which strict procedures and standards enforced Role of human changes from programming to managing organization’s resources Database system enables more sophisticated use of the data Data structures created within the database and their relationships determine effectiveness

Managing the Database System Disadvantages of database systems: Increased costs Management complexity Maintaining currency Vendor dependence Frequent upgrade/replacement cycles

Preparing for Your Database Professional Career

Summary Database management systems were developed to address file system’s inherent weaknesses DBMS present database to end user as single repository Promotes data sharing Eliminates islands of information DBMS enforces data integrity, eliminates redundancy, and promotes security