David M. Kroenke and David J. Auer Database...

38
David M. Kroenke and David J. Auer Database Processing: Fundamentals, Design, and Implementation Chapter One: Introduction

Transcript of David M. Kroenke and David J. Auer Database...

Page 1: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

David M. Kroenke and David J. Auer

Database Processing: Fundamentals, Design, and Implementation

Chapter One:

Introduction

Page 2: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Chapter Objectives

• To understand the nature and characteristics of databases

• To survey some important and interesting database applications

• To gain a general understanding of tables and relationships

• To describe the components of a Microsoft Access database system and explain the functions they perform

• To describe the components of an enterprise-class database system and explain the functions they perform

• To define the term database management system (DBMS) and describe the functions of a DBMS

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-2

Page 3: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Chapter Objectives

• To define the term database and describe what is contained within the database

• To define the term metadata and provide examples of metadata

• To define and understand database design from existing data

• To define and understand database design as new systems development

• To define and understand database design in database redesign

• To understand the history and development of database processing

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-3

Page 4: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

The Characteristics of Databases

• The purpose of a database is to help people

track things of interest to them.

• Data is stored in tables, which have rows and

columns like a spreadsheet. A database may

have multiple tables, where each table stores

data about a different thing.

• Each row in a table stores data about an

occurrence or instance of the thing of interest.

• A database stores data and relationships.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-4

Page 5: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Data in Tables

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-5

Page 6: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

The Key Characteristic of

Databases: Related Tables

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-6

Page 7: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Naming Conventions in this

Textbook

• Table names are written with all capital

letters:

– STUDENT, CLASS, GRADE

• Column names are written with an initial

capital letter, and compound names are

written with a capital letter on each word:

– Term, Section, ClassNumber, StudentName

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-7

Page 8: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Databases Create Information

• Data = recorded facts and figures

• Information = knowledge derived from data

• Databases record data, but they do so in such a way that we can produce information from the data.

– The data on STUDENTs, CLASSes, and GRADEs could produce information about each student’s GPA.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-8

Page 9: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database Examples

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-9

Page 10: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Components of a Database System

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-10

Page 11: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Components of a Database System

with SQL

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-11

Page 12: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Applications, the DBMS, and SQL

• Applications are the computer programs that users work with.

• The Database Management System (DBMS) creates, processes, and administers databases.

• Structured Query Language (SQL) is an internationally recognized standard database language that is used by all commercial DBMSs.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-12

Page 13: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database Applications

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-13

Page 14: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database Applications—Forms

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-14

Page 15: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database Applications—Queries

SELECT LastName, FirstName, EmailAddress

FROM STUDENT

WHERE StudentNumber > 2;

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-15

Page 16: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database—Reports

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-16

Page 17: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

The DBMS

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-17

Page 18: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

The Database

• A database is a self-describing collection of integrated tables.

• The tables are called integrated because they store data about the relationships between the rows of data.

• A database is called self-describing because it stores a description of itself.

• The self-describing data is called metadata, which is data about data.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-18

Page 19: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Typical Metadata Tables

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-19

Page 20: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database Contents

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-20

Page 21: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Personal Database Systems:

Microsoft Access

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-21

Page 22: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

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 2013 is discussed in

detail in Appendix A.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-22

Page 23: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

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 thru 2010 can be used as an application generator for the Microsoft SQL Server DBMS.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-23

Page 24: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Enterprise-Class Database

Systems

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-24

Page 25: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Prominent DBMS Products

• Microsoft Access 2013

• Microsoft SQL Server 2012

– Microsoft SQL Server 2012 Express

• Oracle Corporation Oracle Database 11g

Release 2

• MySQL 5.6

• IBM DB2

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-25

Page 26: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

DBMS Power vs. Ease of Use

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-26

Page 27: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Three Types of Database Design

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-27

Page 28: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database Design from Existing Data

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-28

Page 29: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Data Import: One or Two Tables?

This is an important

decision, and based on

a set of rules known as

normalization (which is

covered in Chapter 3).

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-29

Page 30: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database Design from New

Systems Development

Entity-Relationship data modeling is covered in Chapter 5, and data model

transformations to database designs are covered in Chapter 6.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-30

Page 31: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Database Design from Database

Redesign

Database redesign is

covered in Chapter 8,

after coverage of SQL in

Chapter 7.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-31

Page 32: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

What You Need To Learn

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-32

Page 33: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

Knowledge Priorities

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-33

Page 34: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

A Brief History of

Database

Processing

I

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-34

Page 35: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

A Brief History of

Database

Processing

II

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-35

Page 36: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

The Relational Database Model

• The dominant database model is the relational database model—all current major DBMS products are based on it.

• It was created by IBM engineer E. F. Codd in 1970.

• It was based on mathematics called relational algebra.

• This text examines and explains the relational database model.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-36

Page 37: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

David Kroenke and David Auer

Database Processing (13th Edition)

Fundamentals, Design, and Implementation

End of Presentation: Chapter One

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-37

Page 38: David M. Kroenke and David J. Auer Database Processingmohdanwar.weebly.com/uploads/4/1/9/9/4199855/cmpd314_ch01.pdf• A good strategy for beginners, but not for database professionals.

All rights reserved. No part of this publication may be reproduced, stored in a

retrieval system, or transmitted, in any form or by any means, electronic,

mechanical, photocopying, recording, or otherwise, without the prior written

permission of the publisher. Printed in the United States of America.

KROENKE AND AUER - DATABASE PROCESSING, 13th Edition

© 2014 Pearson Education, Inc.

1-38